pub struct Jingle {
pub sid: String,
pub jid: Option<String>,
}
Expand description
A <jingle/>
element, indicating the possibility to join this call using Jingle.
Fields§
§sid: String
The ID of the Jingle session.
jid: Option<String>
An optional ‘jid’ attribute, to indicate the JID the Jingle session will be initiated from. If no ‘jid’ attribute is provided, the default is the sender of the message stanza.
Trait Implementations§
Source§impl FromXml for Jingle
impl FromXml for Jingle
Source§type Builder = JingleFromXmlBuilder
type Builder = JingleFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
impl StructuralPartialEq for Jingle
Auto Trait Implementations§
impl Freeze for Jingle
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