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 PartialEq for Content
impl PartialEq for Content
impl StructuralPartialEq for Content
Auto Trait Implementations§
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