Struct xmpp_parsers::jingle_raw_udp::Candidate
source · pub struct Candidate {
pub component: u8,
pub generation: u8,
pub id: String,
pub ip: IpAddr,
pub port: u16,
pub type_: Option<Type>,
}
Expand description
A candidate for an ICE-UDP session.
Fields§
§component: u8
A Component ID as defined in ICE-CORE.
generation: u8
An index, starting at 0, that enables the parties to keep track of updates to the candidate throughout the life of the session.
id: String
A unique identifier for the candidate.
ip: IpAddr
The Internet Protocol (IP) address for the candidate transport mechanism; this can be either an IPv4 address or an IPv6 address.
port: u16
The port at the candidate IP address.
type_: Option<Type>
A Candidate Type as defined in ICE-CORE.
Trait Implementations§
source§impl FromXml for Candidate
impl FromXml for Candidate
§type Builder = CandidateFromXmlBuilder
type Builder = CandidateFromXmlBuilder
A builder type used to construct the element. Read more
source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: 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 = CandidateIntoXmlIterator
type EventIter = CandidateIntoXmlIterator
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
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
)