Struct xmpp_parsers::stanza_id::StanzaId
source · pub struct StanzaId {
pub id: String,
pub by: Jid,
}
Expand description
Gives the identifier a service has stamped on this stanza, often in order to identify it inside of an archive.
Fields§
§id: String
The id associated to this stanza by another entity.
by: Jid
The entity who stamped this stanza-id.
Trait Implementations§
source§impl FromXml for StanzaId
impl FromXml for StanzaId
§type Builder = FromEventsViaElement<StanzaId>
type Builder = FromEventsViaElement<StanzaId>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for StanzaId
impl IntoXml for StanzaId
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for StanzaId
impl PartialEq for StanzaId
impl MessagePayload for StanzaId
impl StructuralPartialEq for StanzaId
Auto Trait Implementations§
impl Freeze for StanzaId
impl RefUnwindSafe for StanzaId
impl Send for StanzaId
impl Sync for StanzaId
impl Unpin for StanzaId
impl UnwindSafe for StanzaId
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
Mutably borrows from an owned value. Read more