Struct xmpp_parsers::jingle::Content
source · pub struct Content {
pub creator: Creator,
pub disposition: Disposition,
pub name: ContentId,
pub senders: Senders,
pub description: Option<Description>,
pub transport: Option<Transport>,
pub security: Option<Element>,
}
Expand description
Describes a session’s content, there can be multiple content in one session.
Fields§
§creator: Creator
Who created this content.
disposition: Disposition
How the content definition is to be interpreted by the recipient.
name: ContentId
A per-session unique identifier for this content.
senders: Senders
Who can send data for this content.
description: Option<Description>
What to send.
transport: Option<Transport>
How to send it.
security: Option<Element>
With which security.
Implementations§
source§impl Content
impl Content
sourcepub fn with_disposition(self, disposition: Disposition) -> Content
pub fn with_disposition(self, disposition: Disposition) -> Content
Set how the content is to be interpreted by the recipient.
sourcepub fn with_senders(self, senders: Senders) -> Content
pub fn with_senders(self, senders: Senders) -> Content
Specify who can send data for this content.
sourcepub fn with_description<D: Into<Description>>(self, description: D) -> Content
pub fn with_description<D: Into<Description>>(self, description: D) -> Content
Set the description of this content.
sourcepub fn with_transport<T: Into<Transport>>(self, transport: T) -> Content
pub fn with_transport<T: Into<Transport>>(self, transport: T) -> Content
Set the transport of this content.
sourcepub fn with_security(self, security: Element) -> Content
pub fn with_security(self, security: Element) -> Content
Set the security of this content.
Trait Implementations§
source§impl FromXml for Content
impl FromXml for Content
§type Builder = FromEventsViaElement<Content>
type Builder = FromEventsViaElement<Content>
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 Content
impl IntoXml for Content
§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 Content
impl PartialEq for Content
source§impl TryFrom<Element> for Content
impl TryFrom<Element> for Content
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Content
Auto Trait Implementations§
impl Freeze for Content
impl RefUnwindSafe for Content
impl Send for Content
impl Sync for Content
impl Unpin for Content
impl UnwindSafe for Content
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