Struct xmpp_parsers::iq::Iq
source · pub struct Iq {
pub from: Option<Jid>,
pub to: Option<Jid>,
pub id: String,
pub payload: IqType,
}
Expand description
The main structure representing the <iq/>
stanza.
Fields§
§from: Option<Jid>
The JID emitting this stanza.
to: Option<Jid>
The recipient of this stanza.
id: String
The @id attribute of this stanza, which is required in order to match a request with its result/error.
payload: IqType
The payload content of this stanza.
Implementations§
source§impl Iq
impl Iq
sourcepub fn from_get<S: Into<String>>(id: S, payload: impl IqGetPayload) -> Iq
pub fn from_get<S: Into<String>>(id: S, payload: impl IqGetPayload) -> Iq
Creates an <iq/>
stanza containing a get request.
sourcepub fn from_set<S: Into<String>>(id: S, payload: impl IqSetPayload) -> Iq
pub fn from_set<S: Into<String>>(id: S, payload: impl IqSetPayload) -> Iq
Creates an <iq/>
stanza containing a set request.
sourcepub fn empty_result<S: Into<String>>(to: Jid, id: S) -> Iq
pub fn empty_result<S: Into<String>>(to: Jid, id: S) -> Iq
Creates an empty <iq type="result"/>
stanza.
sourcepub fn from_result<S: Into<String>>(
id: S,
payload: Option<impl IqResultPayload>
) -> Iq
pub fn from_result<S: Into<String>>( id: S, payload: Option<impl IqResultPayload> ) -> Iq
Creates an <iq/>
stanza containing a result.
sourcepub fn from_error<S: Into<String>>(id: S, payload: StanzaError) -> Iq
pub fn from_error<S: Into<String>>(id: S, payload: StanzaError) -> Iq
Creates an <iq/>
stanza containing an error.
Trait Implementations§
impl StructuralPartialEq for Iq
Auto Trait Implementations§
impl Freeze for Iq
impl RefUnwindSafe for Iq
impl Send for Iq
impl Sync for Iq
impl Unpin for Iq
impl UnwindSafe for Iq
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