pub struct TransactionOutputList(/* private fields */);
Implementations§
Source§impl TransactionOutputList
impl TransactionOutputList
pub fn add(&mut self, elem: &TransactionOutput)
Trait Implementations§
Source§impl AsRef<[TransactionOutput]> for TransactionOutputList
impl AsRef<[TransactionOutput]> for TransactionOutputList
Source§fn as_ref(&self) -> &[TransactionOutput]
fn as_ref(&self) -> &[TransactionOutput]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<Vec<TransactionOutput>> for TransactionOutputList
impl AsRef<Vec<TransactionOutput>> for TransactionOutputList
Source§fn as_ref(&self) -> &Vec<TransactionOutput>
fn as_ref(&self) -> &Vec<TransactionOutput>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for TransactionOutputList
impl Clone for TransactionOutputList
Source§fn clone(&self) -> TransactionOutputList
fn clone(&self) -> TransactionOutputList
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 TransactionOutputList
impl Debug for TransactionOutputList
Source§impl From<TransactionOutputList> for JsValue
impl From<TransactionOutputList> for JsValue
Source§fn from(value: TransactionOutputList) -> Self
fn from(value: TransactionOutputList) -> Self
Converts to this type from the input type.
Source§impl From<Vec<TransactionOutput>> for TransactionOutputList
impl From<Vec<TransactionOutput>> for TransactionOutputList
Source§fn from(native: Vec<TransactionOutput>) -> Self
fn from(native: Vec<TransactionOutput>) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for TransactionOutputList
impl FromWasmAbi for TransactionOutputList
Source§impl Into<Vec<TransactionOutput>> for TransactionOutputList
impl Into<Vec<TransactionOutput>> for TransactionOutputList
Source§fn into(self) -> Vec<TransactionOutput>
fn into(self) -> Vec<TransactionOutput>
Converts this type into the (usually inferred) input type.
Source§impl IntoWasmAbi for TransactionOutputList
impl IntoWasmAbi for TransactionOutputList
Source§impl RefFromWasmAbi for TransactionOutputList
impl RefFromWasmAbi for TransactionOutputList
Source§type Anchor = RcRef<TransactionOutputList>
type Anchor = RcRef<TransactionOutputList>
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 TransactionOutputList
impl VectorFromWasmAbi for TransactionOutputList
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[TransactionOutputList]>
Source§impl VectorIntoJsValue for TransactionOutputList
impl VectorIntoJsValue for TransactionOutputList
fn vector_into_jsvalue(vector: Box<[TransactionOutputList]>) -> JsValue
Source§impl VectorIntoWasmAbi for TransactionOutputList
impl VectorIntoWasmAbi for TransactionOutputList
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[TransactionOutputList]>) -> Self::Abi
Source§impl WasmDescribeVector for TransactionOutputList
impl WasmDescribeVector for TransactionOutputList
impl SupportsConstructor for TransactionOutputList
impl SupportsInstanceProperty for TransactionOutputList
impl SupportsStaticProperty for TransactionOutputList
Auto Trait Implementations§
impl Freeze for TransactionOutputList
impl RefUnwindSafe for TransactionOutputList
impl Send for TransactionOutputList
impl Sync for TransactionOutputList
impl Unpin for TransactionOutputList
impl UnwindSafe for TransactionOutputList
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::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
.