Struct concordium_std::schema::ContractV2
source · pub struct ContractV2 {
pub init: Option<FunctionV2>,
pub receive: BTreeMap<String, FunctionV2, Global>,
}Expand description
Describes all the schemas of a V1 smart contract with a V2 schema.
The Default instance produces an empty schema.
Fields§
§init: Option<FunctionV2>§receive: BTreeMap<String, FunctionV2, Global>Trait Implementations§
source§impl Clone for ContractV2
impl Clone for ContractV2
source§fn clone(&self) -> ContractV2
fn clone(&self) -> ContractV2
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 ContractV2
impl Debug for ContractV2
source§impl Default for ContractV2
impl Default for ContractV2
source§fn default() -> ContractV2
fn default() -> ContractV2
Returns the “default value” for a type. Read more
source§impl Deserial for ContractV2
impl Deserial for ContractV2
source§fn deserial<R>(source: &mut R) -> Result<ContractV2, ParseError>where
R: Read,
fn deserial<R>(source: &mut R) -> Result<ContractV2, ParseError>where
R: Read,
Attempt to read a structure from a given source, failing if an error
occurs during deserialization or reading. Read more