pub trait GraphNamespaceRead {
// Required methods
fn names(&self) -> Box<dyn Iterator<Item = &str> + '_>;
fn contains(&self, name: &str) -> bool;
}Expand description
Metadata-only graph names held under the caller’s original registry read guard.
Required Methods§
fn names(&self) -> Box<dyn Iterator<Item = &str> + '_>
fn contains(&self, name: &str) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".