pub trait NovaModule {
// Required method
fn module_name(&self) -> &'static str;
}Expand description
Represents a logical module within the framework.
Required Methods§
fn module_name(&self) -> &'static str
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".