pub trait Dependencies: Sized {
// Required method
fn dependencies(&self) -> &'static [StaticDependency];
}
Expand description
Retrieve the dependencies of a module.
Required Methods§
Sourcefn dependencies(&self) -> &'static [StaticDependency]
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.