pub struct MultiEraTransactionOutputList(/* private fields */);Implementations§
Source§impl MultiEraTransactionOutputList
impl MultiEraTransactionOutputList
pub fn add(&mut self, elem: &MultiEraTransactionOutput)
Trait Implementations§
Source§impl AsRef<[MultiEraTransactionOutput]> for MultiEraTransactionOutputList
impl AsRef<[MultiEraTransactionOutput]> for MultiEraTransactionOutputList
Source§fn as_ref(&self) -> &[MultiEraTransactionOutput]
fn as_ref(&self) -> &[MultiEraTransactionOutput]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<Vec<MultiEraTransactionOutput>> for MultiEraTransactionOutputList
impl AsRef<Vec<MultiEraTransactionOutput>> for MultiEraTransactionOutputList
Source§fn as_ref(&self) -> &Vec<MultiEraTransactionOutput>
fn as_ref(&self) -> &Vec<MultiEraTransactionOutput>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for MultiEraTransactionOutputList
impl Clone for MultiEraTransactionOutputList
Source§fn clone(&self) -> MultiEraTransactionOutputList
fn clone(&self) -> MultiEraTransactionOutputList
Returns a duplicate 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 From<MultiEraTransactionOutputList> for JsValue
impl From<MultiEraTransactionOutputList> for JsValue
Source§fn from(value: MultiEraTransactionOutputList) -> Self
fn from(value: MultiEraTransactionOutputList) -> Self
Converts to this type from the input type.
Source§impl From<Vec<MultiEraTransactionOutput>> for MultiEraTransactionOutputList
impl From<Vec<MultiEraTransactionOutput>> for MultiEraTransactionOutputList
Source§fn from(native: Vec<MultiEraTransactionOutput>) -> Self
fn from(native: Vec<MultiEraTransactionOutput>) -> Self
Converts to this type from the input type.
Source§impl Into<Vec<MultiEraTransactionOutput>> for MultiEraTransactionOutputList
impl Into<Vec<MultiEraTransactionOutput>> for MultiEraTransactionOutputList
Source§fn into(self) -> Vec<MultiEraTransactionOutput>
fn into(self) -> Vec<MultiEraTransactionOutput>
Converts this type into the (usually inferred) input type.
Source§impl RefFromWasmAbi for MultiEraTransactionOutputList
impl RefFromWasmAbi for MultiEraTransactionOutputList
Source§type Anchor = RcRef<MultiEraTransactionOutputList>
type Anchor = RcRef<MultiEraTransactionOutputList>
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 MultiEraTransactionOutputList
impl VectorFromWasmAbi for MultiEraTransactionOutputList
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[MultiEraTransactionOutputList]>
Source§impl VectorIntoWasmAbi for MultiEraTransactionOutputList
impl VectorIntoWasmAbi for MultiEraTransactionOutputList
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[MultiEraTransactionOutputList]>) -> Self::Abi
Source§impl WasmDescribeVector for MultiEraTransactionOutputList
impl WasmDescribeVector for MultiEraTransactionOutputList
impl SupportsConstructor for MultiEraTransactionOutputList
impl SupportsInstanceProperty for MultiEraTransactionOutputList
impl SupportsStaticProperty for MultiEraTransactionOutputList
Auto Trait Implementations§
impl Freeze for MultiEraTransactionOutputList
impl RefUnwindSafe for MultiEraTransactionOutputList
impl Send for MultiEraTransactionOutputList
impl Sync for MultiEraTransactionOutputList
impl Unpin for MultiEraTransactionOutputList
impl UnsafeUnpin for MultiEraTransactionOutputList
impl UnwindSafe for MultiEraTransactionOutputList
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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.