Struct cml_chain_wasm::TransactionInputList
source · pub struct TransactionInputList(/* private fields */);
Implementations§
Trait Implementations§
source§impl AsRef<Vec<TransactionInput>> for TransactionInputList
impl AsRef<Vec<TransactionInput>> for TransactionInputList
source§fn as_ref(&self) -> &Vec<TransactionInput>
fn as_ref(&self) -> &Vec<TransactionInput>
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for TransactionInputList
impl Clone for TransactionInputList
source§fn clone(&self) -> TransactionInputList
fn clone(&self) -> TransactionInputList
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 TransactionInputList
impl Debug for TransactionInputList
source§impl From<TransactionInputList> for JsValue
impl From<TransactionInputList> for JsValue
source§fn from(value: TransactionInputList) -> Self
fn from(value: TransactionInputList) -> Self
Converts to this type from the input type.
source§impl From<Vec<TransactionInput>> for TransactionInputList
impl From<Vec<TransactionInput>> for TransactionInputList
source§fn from(native: Vec<TransactionInput>) -> Self
fn from(native: Vec<TransactionInput>) -> Self
Converts to this type from the input type.
source§impl FromWasmAbi for TransactionInputList
impl FromWasmAbi for TransactionInputList
source§impl Into<Vec<TransactionInput>> for TransactionInputList
impl Into<Vec<TransactionInput>> for TransactionInputList
source§fn into(self) -> Vec<TransactionInput>
fn into(self) -> Vec<TransactionInput>
Converts this type into the (usually inferred) input type.
source§impl IntoWasmAbi for TransactionInputList
impl IntoWasmAbi for TransactionInputList
source§impl RefFromWasmAbi for TransactionInputList
impl RefFromWasmAbi for TransactionInputList
§type Anchor = Ref<'static, TransactionInputList>
type Anchor = Ref<'static, TransactionInputList>
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.Auto Trait Implementations§
impl RefUnwindSafe for TransactionInputList
impl Send for TransactionInputList
impl Sync for TransactionInputList
impl Unpin for TransactionInputList
impl UnwindSafe for TransactionInputList
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
.