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 AsXmlText for Senders
impl AsXmlText for Senders
Source§impl FromXmlText for Senders
impl FromXmlText for Senders
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.
impl StructuralPartialEq for Senders
Auto Trait Implementations§
impl Freeze for Senders
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> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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