Enum xmpp_parsers::jingle_s5b::TransportState
source · pub enum TransportState {
Activated(CandidateId),
CandidateError,
CandidateUsed(CandidateId),
ProxyError,
}
Expand description
The state of a transport, after candidate selection.
Variants§
Activated(CandidateId)
The responder informs the initiator that the bytestream pointed by this candidate has been activated.
CandidateError
Both parties failed to use a candidate, they should fallback to another transport.
CandidateUsed(CandidateId)
The candidate pointed here should be used by both parties.
ProxyError
This entity can’t connect to the SOCKS5 proxy.
Trait Implementations§
source§impl Clone for TransportState
impl Clone for TransportState
source§fn clone(&self) -> TransportState
fn clone(&self) -> TransportState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TransportState
impl Debug for TransportState
source§impl From<TransportState> for Element
impl From<TransportState> for Element
source§fn from(other: TransportState) -> Self
fn from(other: TransportState) -> Self
Converts to this type from the input type.
source§impl FromXml for TransportState
impl FromXml for TransportState
source§impl IntoXml for TransportState
impl IntoXml for TransportState
source§impl PartialEq for TransportState
impl PartialEq for TransportState
source§fn eq(&self, other: &TransportState) -> bool
fn eq(&self, other: &TransportState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for TransportState
impl TryFrom<Element> for TransportState
impl StructuralPartialEq for TransportState
Auto Trait Implementations§
impl Freeze for TransportState
impl RefUnwindSafe for TransportState
impl Send for TransportState
impl Sync for TransportState
impl Unpin for TransportState
impl UnwindSafe for TransportState
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