pub enum Command1 {
Command1OneOf(Box<Command1OneOf>),
Command1OneOf1(Box<Command1OneOf1>),
Command1OneOf2(Box<Command1OneOf2>),
}
Expand description
Command1 : A command can either create a new contract or exercise a choice on an existing contract. A command can either create a new contract or exercise a choice on an existing contract.
Variants§
Command1OneOf(Box<Command1OneOf>)
Command1OneOf1(Box<Command1OneOf1>)
Command1OneOf2(Box<Command1OneOf2>)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Command1
impl<'de> Deserialize<'de> for Command1
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
impl StructuralPartialEq for Command1
Auto Trait Implementations§
impl Freeze for Command1
impl RefUnwindSafe for Command1
impl Send for Command1
impl Sync for Command1
impl Unpin for Command1
impl UnwindSafe for Command1
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