Struct concordium_std::schema::ModuleV2
source · pub struct ModuleV2 {
pub contracts: BTreeMap<String, ContractV2>,
}Expand description
Contains all the contract schemas for a smart contract module V1 with a V2 schema.
Fields§
§contracts: BTreeMap<String, ContractV2>Trait Implementations§
source§impl PartialEq for ModuleV2
impl PartialEq for ModuleV2
impl Eq for ModuleV2
impl StructuralEq for ModuleV2
impl StructuralPartialEq for ModuleV2
Auto Trait Implementations§
impl RefUnwindSafe for ModuleV2
impl Send for ModuleV2
impl Sync for ModuleV2
impl Unpin for ModuleV2
impl UnwindSafe for ModuleV2
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<D, S> DeserialWithState<S> for Dwhere
D: Deserial,
S: HasStateApi,
impl<D, S> DeserialWithState<S> for Dwhere D: Deserial, S: HasStateApi,
source§fn deserial_with_state<R>(_state: &S, source: &mut R) -> Result<D, ParseError>where
R: Read,
fn deserial_with_state<R>(_state: &S, source: &mut R) -> Result<D, ParseError>where R: Read,
Attempt to read a structure from a given source and state, failing if
an error occurs during deserialization or reading.