Struct xmpp_parsers::presence::Presence
source · pub struct Presence {
pub namespace: StanzaNamespace,
pub from: Option<Jid>,
pub to: Option<Jid>,
pub id: Option<String>,
pub type_: Option<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§
§namespace: StanzaNamespace
The namespace of this stanza.
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_: Option<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
impl Presence
sourcepub fn subscribed() -> Presence
pub fn subscribed() -> Presence
Builds a presence of type Subscribed
Builds a presence of type Unavailable
sourcepub fn unsubscribe() -> Presence
pub fn unsubscribe() -> Presence
Builds a presence of type Unsubscribe
sourcepub fn with_from<J: Into<Jid>>(self, from: J) -> Presence
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).
sourcepub fn with_to<J: Into<Jid>>(self, to: J) -> Presence
pub fn with_to<J: Into<Jid>>(self, to: J) -> Presence
Set the recipient of this presence, this is only useful for directed presences.
sourcepub fn with_show(self, show: Show) -> Presence
pub fn with_show(self, show: Show) -> Presence
Set the availability information of this presence.
sourcepub fn with_priority(self, priority: i8) -> Presence
pub fn with_priority(self, priority: i8) -> Presence
Set the priority of this presence.
sourcepub fn with_payload<P: PresencePayload>(self, payload: P) -> Presence
pub fn with_payload<P: PresencePayload>(self, payload: P) -> Presence
Set a payload inside this presence.
sourcepub fn with_payloads(self, payloads: Vec<Element>) -> Presence
pub fn with_payloads(self, payloads: Vec<Element>) -> Presence
Set the payloads of this presence.
sourcepub fn set_status<L, S>(&mut self, lang: L, status: S)
pub fn set_status<L, S>(&mut self, lang: L, status: S)
Set the availability information of this presence.
sourcepub fn add_payload<P: PresencePayload>(&mut self, payload: P)
pub fn add_payload<P: PresencePayload>(&mut self, payload: P)
Add a payload to this presence.