pub trait ConsignmentExt {
// Required methods
fn contract_id(&self) -> ContractId;
fn schema_id(&self) -> SchemaId;
fn schema(&self) -> &Schema;
fn genesis(&self) -> &Genesis;
fn bundled_witnesses(&self) -> impl Iterator<Item = &WitnessBundle>;
}Required Methods§
fn contract_id(&self) -> ContractId
fn schema_id(&self) -> SchemaId
fn schema(&self) -> &Schema
fn genesis(&self) -> &Genesis
fn bundled_witnesses(&self) -> impl Iterator<Item = &WitnessBundle>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.