pub enum ReadableStreamReaderMode {
Byob = 0,
// some variants omitted
}Expand description
The ReadableStreamReaderMode enum.
This API requires the following crate features to be activated: ReadableStreamReaderMode
Variants§
Byob = 0
Implementations§
source§impl ReadableStreamReaderMode
impl ReadableStreamReaderMode
pub fn from_js_value(obj: &JsValue) -> Option<ReadableStreamReaderMode>
Trait Implementations§
source§impl Clone for ReadableStreamReaderMode
impl Clone for ReadableStreamReaderMode
source§fn clone(&self) -> ReadableStreamReaderMode
fn clone(&self) -> ReadableStreamReaderMode
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 ReadableStreamReaderMode
impl Debug for ReadableStreamReaderMode
source§impl From<ReadableStreamReaderMode> for JsValue
impl From<ReadableStreamReaderMode> for JsValue
source§fn from(obj: ReadableStreamReaderMode) -> JsValue
fn from(obj: ReadableStreamReaderMode) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for ReadableStreamReaderMode
impl FromWasmAbi for ReadableStreamReaderMode
§type Abi = <JsValue as FromWasmAbi>::Abi
type Abi = <JsValue as FromWasmAbi>::Abi
The wasm ABI type that this converts from when coming back out from the
ABI boundary.
source§unsafe fn from_abi(
js: <ReadableStreamReaderMode as FromWasmAbi>::Abi
) -> ReadableStreamReaderMode
unsafe fn from_abi( js: <ReadableStreamReaderMode as FromWasmAbi>::Abi ) -> ReadableStreamReaderMode
source§impl IntoWasmAbi for ReadableStreamReaderMode
impl IntoWasmAbi for ReadableStreamReaderMode
§type Abi = <JsValue as IntoWasmAbi>::Abi
type Abi = <JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI
boundary.
source§fn into_abi(self) -> <ReadableStreamReaderMode as IntoWasmAbi>::Abi
fn into_abi(self) -> <ReadableStreamReaderMode as IntoWasmAbi>::Abi
Convert
self into Self::Abi so that it can be sent across the wasm
ABI boundary.source§impl OptionFromWasmAbi for ReadableStreamReaderMode
impl OptionFromWasmAbi for ReadableStreamReaderMode
source§fn is_none(abi: &<ReadableStreamReaderMode as FromWasmAbi>::Abi) -> bool
fn is_none(abi: &<ReadableStreamReaderMode as FromWasmAbi>::Abi) -> bool
Tests whether the argument is a “none” instance. If so it will be
deserialized as
None, and otherwise it will be passed to
FromWasmAbi.source§impl OptionIntoWasmAbi for ReadableStreamReaderMode
impl OptionIntoWasmAbi for ReadableStreamReaderMode
source§fn none() -> <ReadableStreamReaderMode as IntoWasmAbi>::Abi
fn none() -> <ReadableStreamReaderMode as IntoWasmAbi>::Abi
Returns an ABI instance indicating “none”, which JS will interpret as
the
None branch of this option. Read moresource§impl PartialEq for ReadableStreamReaderMode
impl PartialEq for ReadableStreamReaderMode
source§fn eq(&self, other: &ReadableStreamReaderMode) -> bool
fn eq(&self, other: &ReadableStreamReaderMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ReadableStreamReaderMode
impl Eq for ReadableStreamReaderMode
impl StructuralEq for ReadableStreamReaderMode
impl StructuralPartialEq for ReadableStreamReaderMode
Auto Trait Implementations§
impl RefUnwindSafe for ReadableStreamReaderMode
impl Send for ReadableStreamReaderMode
impl Sync for ReadableStreamReaderMode
impl Unpin for ReadableStreamReaderMode
impl UnwindSafe for ReadableStreamReaderMode
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::Abisource§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.