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.
Sourcepub fn extract_payload<T: TryFrom<Element, Error = FromElementError>>(
&mut self,
) -> Result<Option<T>, Error>
pub fn extract_payload<T: TryFrom<Element, Error = FromElementError>>( &mut self, ) -> Result<Option<T>, Error>
Try to extract the given payload type from the message’s payloads.
Returns the first matching payload element as parsed struct or its
parse error. If no element matches, Ok(None)
is returned. If an
element matches, but fails to parse, it is nonetheless removed from
the message.
Elements which do not match the given type are not removed.
Trait Implementations§
Source§impl FromXml for Message
impl FromXml for Message
Source§type Builder = FromEventsViaElement<Message>
type Builder = FromEventsViaElement<Message>
Source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)