pub struct MultiValueVec<T>(pub Vec<T>);
Expand description
Structure that allows taking a variable number of arguments or returning a variable number of results in a smart contract endpoint.
Tuple Fields§
§0: Vec<T>
Implementations§
Source§impl<T> MultiValueVec<T>
impl<T> MultiValueVec<T>
Trait Implementations§
Source§impl<T: Clone> Clone for MultiValueVec<T>
impl<T: Clone> Clone for MultiValueVec<T>
Source§fn clone(&self) -> MultiValueVec<T>
fn clone(&self) -> MultiValueVec<T>
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<T: Debug> Debug for MultiValueVec<T>
impl<T: Debug> Debug for MultiValueVec<T>
Source§impl<T: Default> Default for MultiValueVec<T>
impl<T: Default> Default for MultiValueVec<T>
Source§fn default() -> MultiValueVec<T>
fn default() -> MultiValueVec<T>
Returns the “default value” for a type. Read more
Source§impl<T> From<Vec<T>> for MultiValueVec<T>
impl<T> From<Vec<T>> for MultiValueVec<T>
Source§impl<T> FromIterator<T> for MultiValueVec<T>
impl<T> FromIterator<T> for MultiValueVec<T>
Source§fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
Creates a value from an iterator. Read more
Source§impl<T: PartialEq> PartialEq for MultiValueVec<T>
impl<T: PartialEq> PartialEq for MultiValueVec<T>
Source§impl<T> TopDecodeMulti for MultiValueVec<T>where
T: TopDecodeMulti,
impl<T> TopDecodeMulti for MultiValueVec<T>where
T: TopDecodeMulti,
fn multi_decode_or_handle_err<I, H>(
input: &mut I,
h: H,
) -> Result<Self, H::HandledErr>where
I: TopDecodeMultiInput,
H: DecodeErrorHandler,
Source§const IS_SINGLE_VALUE: bool = false
const IS_SINGLE_VALUE: bool = false
Used to optimize single value loading of endpoint arguments.
fn multi_decode<I>(input: &mut I) -> Result<Self, DecodeError>where
I: TopDecodeMultiInput,
Source§impl<T> TopEncodeMulti for MultiValueVec<T>where
T: TopEncodeMulti,
impl<T> TopEncodeMulti for MultiValueVec<T>where
T: TopEncodeMulti,
Source§fn multi_encode_or_handle_err<O, H>(
&self,
output: &mut O,
h: H,
) -> Result<(), H::HandledErr>where
O: TopEncodeMultiOutput,
H: EncodeErrorHandler,
fn multi_encode_or_handle_err<O, H>(
&self,
output: &mut O,
h: H,
) -> Result<(), H::HandledErr>where
O: TopEncodeMultiOutput,
H: EncodeErrorHandler,
Version of
top_encode
that can handle errors as soon as they occur.
For instance in can exit immediately and make sure that if it returns, it is a success.
By not deferring error handling, this can lead to somewhat smaller bytecode.Source§fn multi_encode<O>(&self, output: &mut O) -> Result<(), EncodeError>where
O: TopEncodeMultiOutput,
fn multi_encode<O>(&self, output: &mut O) -> Result<(), EncodeError>where
O: TopEncodeMultiOutput,
Attempt to serialize the value to ouput.
impl<T: Eq> Eq for MultiValueVec<T>
impl<T> StructuralPartialEq for MultiValueVec<T>
Auto Trait Implementations§
impl<T> Freeze for MultiValueVec<T>
impl<T> RefUnwindSafe for MultiValueVec<T>where
T: RefUnwindSafe,
impl<T> Send for MultiValueVec<T>where
T: Send,
impl<T> Sync for MultiValueVec<T>where
T: Sync,
impl<T> Unpin for MultiValueVec<T>where
T: Unpin,
impl<T> UnwindSafe for MultiValueVec<T>where
T: UnwindSafe,
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