pub trait TapiDyn: Debug {
// Required methods
fn name(&self) -> &'static str;
fn id(&self) -> TypeId;
fn kind(&self) -> TypeKind;
fn dependencies(&self) -> Vec<DynTapi>;
fn path(&self) -> Vec<&'static str>;
}
pub trait TapiDyn: Debug {
// Required methods
fn name(&self) -> &'static str;
fn id(&self) -> TypeId;
fn kind(&self) -> TypeKind;
fn dependencies(&self) -> Vec<DynTapi>;
fn path(&self) -> Vec<&'static str>;
}