pub struct ProcessSendOptions { /* private fields */ }Implementations§
Source§impl ProcessSendOptions
impl ProcessSendOptions
pub fn new(swallow_errors: Option<bool>) -> ProcessSendOptions
pub fn swallow_errors(&self) -> Option<bool>
pub fn set_swallow_errors(&mut self, value: Option<bool>)
Trait Implementations§
Source§impl From<ProcessSendOptions> for JsValue
impl From<ProcessSendOptions> for JsValue
Source§fn from(value: ProcessSendOptions) -> Self
fn from(value: ProcessSendOptions) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for ProcessSendOptions
impl FromWasmAbi for ProcessSendOptions
Source§impl IntoWasmAbi for ProcessSendOptions
impl IntoWasmAbi for ProcessSendOptions
Source§impl LongRefFromWasmAbi for ProcessSendOptions
impl LongRefFromWasmAbi for ProcessSendOptions
Source§type Abi = WasmPtr<WasmRefCell<ProcessSendOptions>>
type Abi = WasmPtr<WasmRefCell<ProcessSendOptions>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRef<ProcessSendOptions>
type Anchor = RcRef<ProcessSendOptions>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiSource§impl RefFromWasmAbi for ProcessSendOptions
impl RefFromWasmAbi for ProcessSendOptions
Source§type Abi = WasmPtr<WasmRefCell<ProcessSendOptions>>
type Abi = WasmPtr<WasmRefCell<ProcessSendOptions>>
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = RcRef<ProcessSendOptions>
type Anchor = RcRef<ProcessSendOptions>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for ProcessSendOptions
impl RefMutFromWasmAbi for ProcessSendOptions
Source§type Abi = WasmPtr<WasmRefCell<ProcessSendOptions>>
type Abi = WasmPtr<WasmRefCell<ProcessSendOptions>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRefMut<ProcessSendOptions>
type Anchor = RcRefMut<ProcessSendOptions>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiimpl SupportsConstructor for ProcessSendOptions
impl SupportsInstanceProperty for ProcessSendOptions
impl SupportsStaticProperty for ProcessSendOptions
Source§impl TryFromJsValue for ProcessSendOptions
impl TryFromJsValue for ProcessSendOptions
Source§impl VectorFromWasmAbi for ProcessSendOptions
impl VectorFromWasmAbi for ProcessSendOptions
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[ProcessSendOptions]>
Source§impl VectorIntoWasmAbi for ProcessSendOptions
impl VectorIntoWasmAbi for ProcessSendOptions
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[ProcessSendOptions]>) -> Self::Abi
Source§impl WasmDescribeVector for ProcessSendOptions
impl WasmDescribeVector for ProcessSendOptions
Auto Trait Implementations§
impl Freeze for ProcessSendOptions
impl RefUnwindSafe for ProcessSendOptions
impl Send for ProcessSendOptions
impl Sync for ProcessSendOptions
impl Unpin for ProcessSendOptions
impl UnsafeUnpin for ProcessSendOptions
impl UnwindSafe for ProcessSendOptions
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,
Source§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.