FlowRecord

Trait FlowRecord 

Source
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§

Source

fn name() -> &'static str

Source

fn descriptor() -> &'static Value

Source

fn descriptor_hash() -> u32

Source

fn into_value(self) -> Value

Source

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.

Implementors§