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