Trait BuilderExtManual

Source
pub trait BuilderExtManual: 'static {
    // Required methods
    fn get_object<T: IsA<Object>>(&self, name: &str) -> Option<T>;
    fn add_from_file<T: AsRef<Path>>(&self, file_path: T) -> Result<(), Error>;
}

Required Methods§

Source

fn get_object<T: IsA<Object>>(&self, name: &str) -> Option<T>

Source

fn add_from_file<T: AsRef<Path>>(&self, file_path: T) -> Result<(), Error>

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§