pub trait GrantNamespace {
// Required methods
fn temporary_schema_name(&self) -> String;
fn temporary_namespace_allocated(&self) -> bool;
fn has_namespace(&self, name: &str) -> Result<bool, String>;
}Required Methods§
fn temporary_schema_name(&self) -> String
fn temporary_namespace_allocated(&self) -> bool
fn has_namespace(&self, name: &str) -> Result<bool, String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".