pub trait KeyspaceQualifyExt {
// Required methods
fn dot(self, other: impl Into<Name>) -> KeyspaceQualifiedName;
fn with_keyspace(self, keyspace: impl Into<Name>) -> KeyspaceQualifiedName;
}
Required Methods§
fn dot(self, other: impl Into<Name>) -> KeyspaceQualifiedName
fn with_keyspace(self, keyspace: impl Into<Name>) -> KeyspaceQualifiedName
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.