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§
Sourcefn from_procedures(
procedures: &[AccountProcedureRoot],
) -> Vec<AccountComponentInterface>
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.