pub struct IceCandidatePair {
pub local: IceCandidate,
pub remote: IceCandidate,
pub nominated: bool,
}Fields§
§local: IceCandidate§remote: IceCandidate§nominated: boolImplementations§
Source§impl IceCandidatePair
impl IceCandidatePair
pub fn new(local: IceCandidate, remote: IceCandidate) -> Self
pub fn priority(&self, role: IceRole) -> u64
Trait Implementations§
Source§impl Clone for IceCandidatePair
impl Clone for IceCandidatePair
Source§fn clone(&self) -> IceCandidatePair
fn clone(&self) -> IceCandidatePair
Returns a duplicate 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 IceCandidatePair
impl Debug for IceCandidatePair
Source§impl PartialEq for IceCandidatePair
impl PartialEq for IceCandidatePair
impl Eq for IceCandidatePair
impl StructuralPartialEq for IceCandidatePair
Auto Trait Implementations§
impl Freeze for IceCandidatePair
impl RefUnwindSafe for IceCandidatePair
impl Send for IceCandidatePair
impl Sync for IceCandidatePair
impl Unpin for IceCandidatePair
impl UnwindSafe for IceCandidatePair
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