Skip to main content

MetadataStore

Trait MetadataStore 

Source
pub trait MetadataStore: Send + Sync {
    // Required methods
    fn entity(&self, name: &str) -> Option<&EntityDescriptor>;
    fn all_entities(&self) -> Vec<&EntityDescriptor>;

    // Provided method
    fn record_metadata_log(&self, _metadata: &ExecutionMetadata) { ... }
}

Required Methods§

Provided Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§