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