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 RefFromWasmAbi for ProcessSendOptions
impl RefFromWasmAbi for ProcessSendOptions
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 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 VectorIntoJsValue for ProcessSendOptions
impl VectorIntoJsValue for ProcessSendOptions
fn vector_into_jsvalue(vector: Box<[ProcessSendOptions]>) -> JsValue
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
impl SupportsConstructor for ProcessSendOptions
impl SupportsInstanceProperty for ProcessSendOptions
impl SupportsStaticProperty 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 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::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
.