Struct xmpp_parsers::jingle::Jingle
source · pub struct Jingle {
pub action: Action,
pub initiator: Option<Jid>,
pub responder: Option<Jid>,
pub sid: SessionId,
pub contents: Vec<Content>,
pub reason: Option<ReasonElement>,
pub group: Option<Group>,
pub other: Vec<Element>,
}
Expand description
The main Jingle container, to be included in an iq stanza.
Fields§
§action: Action
The action to execute on both ends.
initiator: Option<Jid>
Who the initiator is.
responder: Option<Jid>
Who the responder is.
sid: SessionId
Unique session identifier between two entities.
contents: Vec<Content>
A list of contents to be negotiated in this session.
reason: Option<ReasonElement>
An optional reason.
group: Option<Group>
An optional grouping.
other: Vec<Element>
Payloads to be included.
Implementations§
source§impl Jingle
impl Jingle
sourcepub fn with_initiator(self, initiator: Jid) -> Jingle
pub fn with_initiator(self, initiator: Jid) -> Jingle
Set the initiator’s JID.
sourcepub fn with_responder(self, responder: Jid) -> Jingle
pub fn with_responder(self, responder: Jid) -> Jingle
Set the responder’s JID.
sourcepub fn add_content(self, content: Content) -> Jingle
pub fn add_content(self, content: Content) -> Jingle
Add a content to this Jingle container.
sourcepub fn set_reason(self, reason: ReasonElement) -> Jingle
pub fn set_reason(self, reason: ReasonElement) -> Jingle
Set the reason in this Jingle container.
Trait Implementations§
source§impl PartialEq for Jingle
impl PartialEq for Jingle
impl IqSetPayload for Jingle
impl StructuralPartialEq for Jingle
Auto Trait Implementations§
impl RefUnwindSafe for Jingle
impl Send for Jingle
impl Sync for Jingle
impl Unpin for Jingle
impl UnwindSafe for Jingle
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