pub struct BrowserAudioLocal {
pub address: IpAddr,
pub port: u16,
pub session_id: u64,
pub session_version: u64,
pub direction: Direction,
pub ice: Credentials,
pub candidates: Vec<Candidate>,
pub fingerprint: Fingerprint,
pub setup: SetupCapabilities,
}Expand description
Local facts required to emit a complete description.
Fields§
§address: IpAddrDefault candidate address.
port: u16Bound component-one port.
session_id: u64Stable SDP session identifier.
session_version: u64Increasing SDP session version.
direction: DirectionRequested direction.
ice: CredentialsFresh credentials for this ICE generation.
candidates: Vec<Candidate>Gathered component-one candidates.
fingerprint: FingerprintLocal certificate’s SHA-256 fingerprint.
setup: SetupCapabilitiesDTLS roles available locally.
Trait Implementations§
Source§impl Clone for BrowserAudioLocal
impl Clone for BrowserAudioLocal
Source§fn clone(&self) -> BrowserAudioLocal
fn clone(&self) -> BrowserAudioLocal
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BrowserAudioLocal
impl Debug for BrowserAudioLocal
Source§impl PartialEq for BrowserAudioLocal
impl PartialEq for BrowserAudioLocal
Source§fn eq(&self, other: &BrowserAudioLocal) -> bool
fn eq(&self, other: &BrowserAudioLocal) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BrowserAudioLocal
impl StructuralPartialEq for BrowserAudioLocal
Auto Trait Implementations§
impl Freeze for BrowserAudioLocal
impl RefUnwindSafe for BrowserAudioLocal
impl Send for BrowserAudioLocal
impl Sync for BrowserAudioLocal
impl Unpin for BrowserAudioLocal
impl UnsafeUnpin for BrowserAudioLocal
impl UnwindSafe for BrowserAudioLocal
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