Enum xmpp_parsers::jingle_message::JingleMI
source · pub enum JingleMI {
Propose {
sid: SessionId,
description: Element,
},
Retract(SessionId),
Accept(SessionId),
Proceed(SessionId),
Reject(SessionId),
}
Expand description
Defines a protocol for broadcasting Jingle requests to all of the clients of a user.
Variants§
Propose
Fields
Indicates we want to start a Jingle session.
Retract(SessionId)
Cancels a previously proposed session.
Accept(SessionId)
Accepts a session proposed by the other party.
Proceed(SessionId)
Proceed with a previously proposed session.
Reject(SessionId)
Rejects a session proposed by the other party.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for JingleMI
impl Send for JingleMI
impl Sync for JingleMI
impl Unpin for JingleMI
impl UnwindSafe for JingleMI
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