Enum xmpp_parsers::jingle::Senders
source · pub enum Senders {
Both,
Initiator,
None,
Responder,
}
Expand description
Which parties in the session will be generating content.
Variants§
Both
Both parties can send for this content.
Initiator
Only the initiator can send for this content.
None
No one can send for this content.
Responder
Only the responder can send for this content.
Trait Implementations§
source§impl IntoAttributeValue for Senders
impl IntoAttributeValue for Senders
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for Senders
impl PartialEq for Senders
impl StructuralPartialEq for Senders
Auto Trait Implementations§
impl RefUnwindSafe for Senders
impl Send for Senders
impl Sync for Senders
impl Unpin for Senders
impl UnwindSafe for Senders
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