Trait BuildableExt

Source
pub trait BuildableExt: IsA<Buildable> + 'static {
    // Provided method
    fn buildable_id(&self) -> Option<GString> { ... }
}

Provided Methods§

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.

Implementors§

Source§

impl<O> BuildableExt for O
where O: IsA<Buildable>,