pub enum SignalingState {
Stable,
HaveLocalOffer,
HaveRemoteOffer,
HaveLocalPranswer,
HaveRemotePranswer,
Closed,
}
Expand description
https://www.w3.org/TR/webrtc/#rtcsignalingstate-enum
Variants§
Trait Implementations§
source§impl Clone for SignalingState
impl Clone for SignalingState
source§fn clone(&self) -> SignalingState
fn clone(&self) -> SignalingState
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 SignalingState
impl Debug for SignalingState
source§impl Hash for SignalingState
impl Hash for SignalingState
source§impl PartialEq for SignalingState
impl PartialEq for SignalingState
source§fn eq(&self, other: &SignalingState) -> bool
fn eq(&self, other: &SignalingState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SignalingState
impl Eq for SignalingState
impl StructuralPartialEq for SignalingState
Auto Trait Implementations§
impl Freeze for SignalingState
impl RefUnwindSafe for SignalingState
impl Send for SignalingState
impl Sync for SignalingState
impl Unpin for SignalingState
impl UnwindSafe for SignalingState
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