Enum xmpp_parsers::jingle_s5b::TransportPayload
source · pub enum TransportPayload {
Activated(CandidateId),
Candidates(Vec<Candidate>),
CandidateError,
CandidateUsed(CandidateId),
ProxyError,
None,
}
Expand description
The payload of a transport.
Variants§
Activated(CandidateId)
The responder informs the initiator that the bytestream pointed by this candidate has been activated.
Candidates(Vec<Candidate>)
A list of suggested candidates.
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.
None
XXX: Invalid, should not be found in the wild.
Trait Implementations§
source§impl Clone for TransportPayload
impl Clone for TransportPayload
source§fn clone(&self) -> TransportPayload
fn clone(&self) -> TransportPayload
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 TransportPayload
impl Debug for TransportPayload
source§impl PartialEq for TransportPayload
impl PartialEq for TransportPayload
source§fn eq(&self, other: &TransportPayload) -> bool
fn eq(&self, other: &TransportPayload) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TransportPayload
Auto Trait Implementations§
impl Freeze for TransportPayload
impl RefUnwindSafe for TransportPayload
impl Send for TransportPayload
impl Sync for TransportPayload
impl Unpin for TransportPayload
impl UnwindSafe for TransportPayload
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)