pub trait ManifestNodeStore: ManifestNodeSource {
// Required method
fn node_hashes(&self) -> Vec<ContentHash>;
}Expand description
Optional whole-store enumeration, used only to report nodes that are present but unreachable from a root.
Required Methods§
fn node_hashes(&self) -> Vec<ContentHash>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".