Struct xmpp_parsers::presence::Presence

source ·
pub struct Presence {
    pub from: Option<Jid>,
    pub to: Option<Jid>,
    pub id: Option<String>,
    pub type_: Type,
    pub show: Option<Show>,
    pub statuses: BTreeMap<String, String>,
    pub priority: i8,
    pub payloads: Vec<Element>,
}
Expand description

The main structure representing the <presence/> stanza.

Fields§

§from: Option<Jid>

The sender of this presence.

§to: Option<Jid>

The recipient of this presence.

§id: Option<String>

The identifier, unique on this stream, of this stanza.

§type_: Type

The type of this presence stanza.

§show: Option<Show>

The availability of the sender of this presence.

§statuses: BTreeMap<String, String>

A localised list of statuses defined in this presence.

§priority: i8

The sender’s resource priority, if negative it won’t receive messages that haven’t been directed to it.

§payloads: Vec<Element>

A list of payloads contained in this presence.

Implementations§

source§

impl Presence

source

pub fn new(type_: Type) -> Presence

Create a new presence of this type.

source

pub fn available() -> Presence

Create a presence without a type, which means available

source

pub fn error() -> Presence

Builds a presence of type Error

source

pub fn probe() -> Presence

Builds a presence of type Probe

source

pub fn subscribe() -> Presence

Builds a presence of type Subscribe

source

pub fn subscribed() -> Presence

Builds a presence of type Subscribed

source

pub fn unavailable() -> Presence

Builds a presence of type Unavailable

source

pub fn unsubscribe() -> Presence

Builds a presence of type Unsubscribe

source

pub fn with_from<J: Into<Jid>>(self, from: J) -> Presence

Set the emitter of this presence, this should only be useful for servers and components, as clients can only send presences from their own resource (which is implicit).

source

pub fn with_to<J: Into<Jid>>(self, to: J) -> Presence

Set the recipient of this presence, this is only useful for directed presences.

source

pub fn with_id(self, id: String) -> Presence

Set the identifier for this presence.

source

pub fn with_show(self, show: Show) -> Presence

Set the availability information of this presence.

source

pub fn with_priority(self, priority: i8) -> Presence

Set the priority of this presence.

source

pub fn with_payload<P: PresencePayload>(self, payload: P) -> Presence

Set a payload inside this presence.

source

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

Set the payloads of this presence.

source

pub fn set_status<L, S>(&mut self, lang: L, status: S)
where L: Into<String>, S: Into<String>,

Set the availability information of this presence.

source

pub fn add_payload<P: PresencePayload>(&mut self, payload: P)

Add a payload to this presence.

Trait Implementations§

source§

impl Clone for Presence

source§

fn clone(&self) -> Presence

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 Presence

source§

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

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

impl From<Presence> for Element

source§

fn from(presence: Presence) -> Element

Converts to this type from the input type.
source§

impl PartialEq for Presence

source§

fn eq(&self, other: &Presence) -> 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 Presence

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Presence, FromElementError>

Performs the conversion.
source§

impl StructuralPartialEq for Presence

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.