Struct opslang_wasm::StatementExecutionContext
source · pub struct StatementExecutionContext { /* private fields */ }
Trait Implementations§
source§impl Clone for StatementExecutionContext
impl Clone for StatementExecutionContext
source§fn clone(&self) -> StatementExecutionContext
fn clone(&self) -> StatementExecutionContext
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 StatementExecutionContext
impl Debug for StatementExecutionContext
source§impl From<StatementExecutionContext> for JsValue
impl From<StatementExecutionContext> for JsValue
source§fn from(value: StatementExecutionContext) -> Self
fn from(value: StatementExecutionContext) -> Self
Converts to this type from the input type.
source§impl RefFromWasmAbi for StatementExecutionContext
impl RefFromWasmAbi for StatementExecutionContext
§type Anchor = Ref<'static, StatementExecutionContext>
type Anchor = Ref<'static, StatementExecutionContext>
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 VectorFromWasmAbi for StatementExecutionContext
impl VectorFromWasmAbi for StatementExecutionContext
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[StatementExecutionContext]>
source§impl VectorIntoWasmAbi for StatementExecutionContext
impl VectorIntoWasmAbi for StatementExecutionContext
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[StatementExecutionContext]>) -> Self::Abi
source§impl WasmDescribeVector for StatementExecutionContext
impl WasmDescribeVector for StatementExecutionContext
Auto Trait Implementations§
impl Freeze for StatementExecutionContext
impl RefUnwindSafe for StatementExecutionContext
impl Send for StatementExecutionContext
impl Sync for StatementExecutionContext
impl Unpin for StatementExecutionContext
impl UnwindSafe for StatementExecutionContext
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
.