pub trait LayoutExt: IsA<Layout> + 'static {
// Provided methods
fn description(&self) -> Option<GString> { ... }
fn name(&self) -> Option<GString> { ... }
fn short_description(&self) -> Option<GString> { ... }
}Provided Methods§
Sourcefn description(&self) -> Option<GString>
fn description(&self) -> Option<GString>
Sourcefn short_description(&self) -> Option<GString>
fn short_description(&self) -> Option<GString>
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.