pub trait SchemaDropCatalog: EmptySchemaCatalog {
// Required methods
fn schema_security(&self, name: &str) -> Option<SchemaSecurity>;
fn current_user_has_role_privileges(&self, role: &str) -> bool;
fn schema_is_graph(&self, name: &str) -> Result<bool, String>;
}Required Methods§
fn schema_security(&self, name: &str) -> Option<SchemaSecurity>
fn current_user_has_role_privileges(&self, role: &str) -> bool
fn schema_is_graph(&self, name: &str) -> Result<bool, String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".