pub trait NamespacedRef<K> {
// Required method
fn within(&self, namespace: impl Into<Option<String>>) -> impl ObjectRef<K>;
}
Available on crate features
unstable-client
and client
only.Expand description
Reference resolver for a specified namespace
Required Methods§
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.