Skip to main content

AetherNodeMeta

Trait AetherNodeMeta 

Source
pub trait AetherNodeMeta {
    // Required methods
    fn type_name() -> &'static str;
    fn param_defs() -> &'static [ParamDef];
}
Expand description

Metadata trait auto-implemented by #[aether_node].

Required Methods§

Source

fn type_name() -> &'static str

Source

fn param_defs() -> &'static [ParamDef]

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§