Struct xmpp_parsers::jingle_ice_udp::Candidate
source · pub struct Candidate {
pub component: u8,
pub foundation: String,
pub generation: u8,
pub id: String,
pub ip: IpAddr,
pub port: u16,
pub priority: u32,
pub protocol: String,
pub rel_addr: Option<IpAddr>,
pub rel_port: Option<u16>,
pub network: Option<u8>,
pub type_: Type,
}
Expand description
A candidate for an ICE-UDP session.
Fields§
§component: u8
A Component ID as defined in ICE-CORE.
foundation: String
A Foundation 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.
priority: u32
A Priority as defined in ICE-CORE.
protocol: String
The protocol to be used. The only value defined by this specification is “udp”.
rel_addr: Option<IpAddr>
A related address as defined in ICE-CORE.
rel_port: Option<u16>
A related port as defined in ICE-CORE.
network: Option<u8>
An index, starting at 0, referencing which network this candidate is on for a given peer.
type_: Type
A Candidate Type as defined in ICE-CORE.
Trait Implementations§
source§impl AsXml for Candidate
impl AsXml for Candidate
§type ItemIter<'xso_proc_as_xml_iter_lifetime> = CandidateAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = CandidateAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
source§fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
Item
] 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
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)
clone_to_uninit
)