Enum web_sys::RtcPeerConnectionState
source · pub enum RtcPeerConnectionState {
Closed = 0,
Failed = 1,
Disconnected = 2,
New = 3,
Connecting = 4,
Connected = 5,
// some variants omitted
}
Expand description
The RtcPeerConnectionState
enum.
This API requires the following crate features to be activated: RtcPeerConnectionState
Variants§
Implementations§
source§impl RtcPeerConnectionState
impl RtcPeerConnectionState
pub fn from_js_value(obj: &JsValue) -> Option<RtcPeerConnectionState>
Trait Implementations§
source§impl Clone for RtcPeerConnectionState
impl Clone for RtcPeerConnectionState
source§fn clone(&self) -> RtcPeerConnectionState
fn clone(&self) -> RtcPeerConnectionState
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 RtcPeerConnectionState
impl Debug for RtcPeerConnectionState
source§impl From<RtcPeerConnectionState> for JsValue
impl From<RtcPeerConnectionState> for JsValue
source§fn from(obj: RtcPeerConnectionState) -> JsValue
fn from(obj: RtcPeerConnectionState) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for RtcPeerConnectionState
impl FromWasmAbi for RtcPeerConnectionState
source§impl IntoWasmAbi for RtcPeerConnectionState
impl IntoWasmAbi for RtcPeerConnectionState
source§impl PartialEq for RtcPeerConnectionState
impl PartialEq for RtcPeerConnectionState
source§fn eq(&self, other: &RtcPeerConnectionState) -> bool
fn eq(&self, other: &RtcPeerConnectionState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RtcPeerConnectionState
impl Eq for RtcPeerConnectionState
impl StructuralEq for RtcPeerConnectionState
impl StructuralPartialEq for RtcPeerConnectionState
Auto Trait Implementations§
impl RefUnwindSafe for RtcPeerConnectionState
impl Send for RtcPeerConnectionState
impl Sync for RtcPeerConnectionState
impl Unpin for RtcPeerConnectionState
impl UnwindSafe for RtcPeerConnectionState
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
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.