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 FromXml for Candidate
impl FromXml for Candidate
§type Builder = FromEventsViaElement<Candidate>
type Builder = FromEventsViaElement<Candidate>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for Candidate
impl IntoXml for Candidate
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.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