Enum web_sys::RecordingState
source · pub enum RecordingState {
Inactive = 0,
Recording = 1,
Paused = 2,
// some variants omitted
}
Expand description
The RecordingState
enum.
This API requires the following crate features to be activated: RecordingState
Variants§
Implementations§
source§impl RecordingState
impl RecordingState
pub fn from_js_value(obj: &JsValue) -> Option<RecordingState>
Trait Implementations§
source§impl Clone for RecordingState
impl Clone for RecordingState
source§fn clone(&self) -> RecordingState
fn clone(&self) -> RecordingState
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 RecordingState
impl Debug for RecordingState
source§impl From<RecordingState> for JsValue
impl From<RecordingState> for JsValue
source§fn from(obj: RecordingState) -> JsValue
fn from(obj: RecordingState) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for RecordingState
impl FromWasmAbi for RecordingState
source§impl IntoWasmAbi for RecordingState
impl IntoWasmAbi for RecordingState
source§impl OptionFromWasmAbi for RecordingState
impl OptionFromWasmAbi for RecordingState
source§impl OptionIntoWasmAbi for RecordingState
impl OptionIntoWasmAbi for RecordingState
source§impl PartialEq for RecordingState
impl PartialEq for RecordingState
source§fn eq(&self, other: &RecordingState) -> bool
fn eq(&self, other: &RecordingState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RecordingState
impl Eq for RecordingState
impl StructuralEq for RecordingState
impl StructuralPartialEq for RecordingState
Auto Trait Implementations§
impl RefUnwindSafe for RecordingState
impl Send for RecordingState
impl Sync for RecordingState
impl Unpin for RecordingState
impl UnwindSafe for RecordingState
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
.