Trait Dependencies

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

Retrieve the dependencies of a module.

Required Methods§

Source

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

Get the dependencies of the module.

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§