pub trait FlowRecord {
    // Required methods
    fn name() -> &'static str;
    fn descriptor() -> &'static Value;
    fn descriptor_hash() -> u32;
    fn into_value(self) -> Value;
    fn child_descriptors() -> &'static HashMap<u32, Value>;
}Required Methods§
fn name() -> &'static str
fn descriptor() -> &'static Value
fn descriptor_hash() -> u32
fn into_value(self) -> Value
fn child_descriptors() -> &'static HashMap<u32, Value>
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.