pub struct MakeMoveVector {
pub type_tag: Option<TypeTag>,
pub elements: Vec<Argument>,
}Expand description
Command to build a move vector out of a set of individual elements
§BCS
The BCS serialized form for this type is defined by the following ABNF:
make-move-vector = (option type-tag) (vector argument)Fields§
§type_tag: Option<TypeTag>Type of the individual elements
This is required to be set when the type can’t be inferred, for example when the set of provided arguments are all pure input values.
elements: Vec<Argument>The set individual elements to build the vector with
Trait Implementations§
Source§impl Arbitrary for MakeMoveVector
Available on crate feature proptest only.
impl Arbitrary for MakeMoveVector
Available on crate feature
proptest only.Source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with accepts for configuration
of the generated Strategy. Parameters must implement Default.Source§type Strategy = BoxedStrategy<MakeMoveVector>
type Strategy = BoxedStrategy<MakeMoveVector>
The type of
Strategy used to generate values of type Self.Source§fn arbitrary_with(
args_shared: <Self as Arbitrary>::Parameters,
) -> Self::Strategy
fn arbitrary_with( args_shared: <Self as Arbitrary>::Parameters, ) -> Self::Strategy
Source§impl Clone for MakeMoveVector
impl Clone for MakeMoveVector
Source§fn clone(&self) -> MakeMoveVector
fn clone(&self) -> MakeMoveVector
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MakeMoveVector
impl Debug for MakeMoveVector
Source§impl<'de> Deserialize<'de> for MakeMoveVector
Available on crate feature serde only.
impl<'de> Deserialize<'de> for MakeMoveVector
Available on crate feature
serde only.Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MakeMoveVector
impl Display for MakeMoveVector
impl Eq for MakeMoveVector
Source§impl Hash for MakeMoveVector
impl Hash for MakeMoveVector
Source§impl PartialEq for MakeMoveVector
impl PartialEq for MakeMoveVector
Source§impl Serialize for MakeMoveVector
Available on crate feature serde only.
impl Serialize for MakeMoveVector
Available on crate feature
serde only.impl StructuralPartialEq for MakeMoveVector
Auto Trait Implementations§
impl Freeze for MakeMoveVector
impl RefUnwindSafe for MakeMoveVector
impl Send for MakeMoveVector
impl Sync for MakeMoveVector
impl Unpin for MakeMoveVector
impl UnsafeUnpin for MakeMoveVector
impl UnwindSafe for MakeMoveVector
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