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