Struct xmpp_parsers::message::Message
source · pub struct Message {
pub from: Option<Jid>,
pub to: Option<Jid>,
pub id: Option<String>,
pub type_: MessageType,
pub bodies: BTreeMap<String, Body>,
pub subjects: BTreeMap<String, Subject>,
pub thread: Option<Thread>,
pub payloads: Vec<Element>,
}
Expand description
The main structure representing the <message/>
stanza.
Fields§
§from: Option<Jid>
The JID emitting this stanza.
to: Option<Jid>
The recipient of this stanza.
id: Option<String>
The @id attribute of this stanza, which is required in order to match a request with its response.
type_: MessageType
The type of this message.
bodies: BTreeMap<String, Body>
A list of bodies, sorted per language. Use get_best_body() to access them on reception.
subjects: BTreeMap<String, Subject>
A list of subjects, sorted per language. Use get_best_subject() to access them on reception.
thread: Option<Thread>
An optional thread identifier, so that other people can reply directly to this message.
payloads: Vec<Element>
A list of the extension payloads contained in this stanza.
Implementations§
source§impl Message
impl Message
sourcepub fn new<J: Into<Option<Jid>>>(to: J) -> Message
pub fn new<J: Into<Option<Jid>>>(to: J) -> Message
Creates a new <message/>
stanza of type Chat for the given recipient.
This is equivalent to the Message::chat
method.
sourcepub fn new_with_type<J: Into<Option<Jid>>>(type_: MessageType, to: J) -> Message
pub fn new_with_type<J: Into<Option<Jid>>>(type_: MessageType, to: J) -> Message
Creates a new <message/>
stanza of a certain type for the given recipient.
sourcepub fn with_body(self, lang: String, body: String) -> Message
pub fn with_body(self, lang: String, body: String) -> Message
Appends a body in given lang to the Message
sourcepub fn with_payload<P: MessagePayload>(self, payload: P) -> Message
pub fn with_payload<P: MessagePayload>(self, payload: P) -> Message
Set a payload inside this message.
sourcepub fn with_payloads(self, payloads: Vec<Element>) -> Message
pub fn with_payloads(self, payloads: Vec<Element>) -> Message
Set the payloads of this message.
sourcepub fn get_best_body(
&self,
preferred_langs: Vec<&str>
) -> Option<(String, &Body)>
pub fn get_best_body( &self, preferred_langs: Vec<&str> ) -> Option<(String, &Body)>
Returns the best matching body from a list of languages.
For instance, if a message contains both an xml:lang=‘de’, an xml:lang=‘fr’ and an English
body without an xml:lang attribute, and you pass [“fr”, “en”] as your preferred languages,
Some(("fr", the_second_body))
will be returned.
If no body matches, an undefined body will be returned.
sourcepub fn get_best_subject(
&self,
preferred_langs: Vec<&str>
) -> Option<(String, &Subject)>
pub fn get_best_subject( &self, preferred_langs: Vec<&str> ) -> Option<(String, &Subject)>
Returns the best matching subject from a list of languages.
For instance, if a message contains both an xml:lang=‘de’, an xml:lang=‘fr’ and an English
subject without an xml:lang attribute, and you pass [“fr”, “en”] as your preferred
languages, Some(("fr", the_second_subject))
will be returned.
If no subject matches, an undefined subject will be returned.