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
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)