pub struct SdpAnswerParams {
pub fingerprint: String,
pub ice_ufrag: String,
pub ice_pwd: String,
}Available on crate features
ingest and webrtc only.Expand description
The crypto/ICE parameters the host injects into the answer.
Fields§
§fingerprint: Stringa=fingerprint value (sha-256 AA:BB:…).
ice_ufrag: Stringa=ice-ufrag value.
ice_pwd: Stringa=ice-pwd value.
Trait Implementations§
Source§impl Clone for SdpAnswerParams
impl Clone for SdpAnswerParams
Source§fn clone(&self) -> SdpAnswerParams
fn clone(&self) -> SdpAnswerParams
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 moreAuto Trait Implementations§
impl Freeze for SdpAnswerParams
impl RefUnwindSafe for SdpAnswerParams
impl Send for SdpAnswerParams
impl Sync for SdpAnswerParams
impl Unpin for SdpAnswerParams
impl UnsafeUnpin for SdpAnswerParams
impl UnwindSafe for SdpAnswerParams
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