pub trait BuildableExtManual: 'static {
    fn get_name(&self) -> Option<String>;
    fn set_name(&self, name: &str);
}

Required Methods

Implementors