Trait abstract_app::traits::Dependencies

source ·
pub trait Dependencies: Sized {
    // Required method
    fn dependencies(&self) -> &[StaticDependency];
}
Expand description

Retrieve the dependencies of a module.

Required Methods§

source

fn dependencies(&self) -> &[StaticDependency]

Get the dependencies of the module.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Dependencies for T
where T: Handler,