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>
Object Safety§
This trait is not object safe.