Struct xmpp_parsers::jingle_s5b::Candidate
source · pub struct Candidate {
pub cid: CandidateId,
pub host: IpAddr,
pub jid: Jid,
pub port: Option<u16>,
pub priority: u32,
pub type_: Type,
}
Expand description
A candidate for a connection.
Fields§
§cid: CandidateId
The identifier for this candidate.
host: IpAddr
The host to connect to.
jid: Jid
The JID to request at the given end.
port: Option<u16>
The port to connect to.
priority: u32
The priority of this candidate, computed using this formula: priority = (2^16)*(type preference) + (local preference)
type_: Type
The type of the connection being proposed by this candidate.
Implementations§
Trait Implementations§
source§impl PartialEq for Candidate
impl PartialEq for Candidate
source§impl TryFrom<Element> for Candidate
impl TryFrom<Element> for Candidate
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Candidate
Auto Trait Implementations§
impl Freeze for Candidate
impl RefUnwindSafe for Candidate
impl Send for Candidate
impl Sync for Candidate
impl Unpin for Candidate
impl UnwindSafe for Candidate
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
)