Trait TapiDyn

Source
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>;
}

Required Methods§

Source

fn name(&self) -> &'static str

Source

fn id(&self) -> TypeId

Source

fn kind(&self) -> TypeKind

Source

fn dependencies(&self) -> Vec<DynTapi>

Source

fn path(&self) -> Vec<&'static str>

Implementors§