Struct webrtc_ice::candidate::CandidateRelatedAddress
source · pub struct CandidateRelatedAddress {
pub address: String,
pub port: u16,
}
Expand description
Convey transport addresses related to the candidate, useful for diagnostics and other purposes.
Fields§
§address: String
§port: u16
Trait Implementations§
source§impl Clone for CandidateRelatedAddress
impl Clone for CandidateRelatedAddress
source§fn clone(&self) -> CandidateRelatedAddress
fn clone(&self) -> CandidateRelatedAddress
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 CandidateRelatedAddress
impl Debug for CandidateRelatedAddress
source§impl Display for CandidateRelatedAddress
impl Display for CandidateRelatedAddress
source§impl PartialEq for CandidateRelatedAddress
impl PartialEq for CandidateRelatedAddress
source§fn eq(&self, other: &CandidateRelatedAddress) -> bool
fn eq(&self, other: &CandidateRelatedAddress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CandidateRelatedAddress
impl StructuralPartialEq for CandidateRelatedAddress
Auto Trait Implementations§
impl RefUnwindSafe for CandidateRelatedAddress
impl Send for CandidateRelatedAddress
impl Sync for CandidateRelatedAddress
impl Unpin for CandidateRelatedAddress
impl UnwindSafe for CandidateRelatedAddress
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