AccountComponentInterfaceExt

Trait AccountComponentInterfaceExt 

Source
pub trait AccountComponentInterfaceExt {
    // Required method
    fn from_procedures(
        procedures: &[AccountProcedureRoot],
    ) -> Vec<AccountComponentInterface>;
}
Expand description

An extension for AccountComponentInterface that allows instantiation from a set of procedure roots.

Required Methods§

Source

fn from_procedures( procedures: &[AccountProcedureRoot], ) -> Vec<AccountComponentInterface>

Creates a vector of AccountComponentInterface instances from the provided set of procedures.

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.

Implementors§