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