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

source

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.

source

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.

source

pub fn chat<J: Into<Option<Jid>>>(to: J) -> Message

Creates a Message of type Chat

source

pub fn error<J: Into<Option<Jid>>>(to: J) -> Message

Creates a Message of type Error

source

pub fn groupchat<J: Into<Option<Jid>>>(to: J) -> Message

Creates a Message of type Groupchat

source

pub fn headline<J: Into<Option<Jid>>>(to: J) -> Message

Creates a Message of type Headline

source

pub fn normal<J: Into<Option<Jid>>>(to: J) -> Message

Creates a Message of type Normal

source

pub fn with_body(self, lang: String, body: String) -> Message

Appends a body in given lang to the Message

source

pub fn with_payload<P: MessagePayload>(self, payload: P) -> Message

Set a payload inside this message.

source

pub fn with_payloads(self, payloads: Vec<Element>) -> Message

Set the payloads of this message.

source

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.

source

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.

Trait Implementations§

source§

impl Clone for Message

source§

fn clone(&self) -> Message

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Message

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Message> for Element

source§

fn from(message: Message) -> Element

Converts to this type from the input type.
source§

impl PartialEq for Message

source§

fn eq(&self, other: &Message) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Element> for Message

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(root: Element) -> Result<Message, Error>

Performs the conversion.
source§

impl StructuralPartialEq for Message

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.