pub trait ConfigExt {
// Required methods
fn space(&self) -> &str;
fn name(&self) -> &str;
fn uid(&self) -> &str;
fn version(&self) -> &str;
}Required Methods§
fn space(&self) -> &str
fn name(&self) -> &str
fn uid(&self) -> &str
fn version(&self) -> &str
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".