pub trait BuildableImpl: ObjectImpl {
    fn set_id(&self, buildable: &Self::Type, id: &str) { ... }
    fn id(&self, buildable: &Self::Type) -> Option<GString> { ... }
    fn add_child(
        &self,
        buildable: &Self::Type,
        builder: &Builder,
        child: &Object,
        type_: Option<&str>
    ) { ... } fn set_buildable_property(
        &self,
        buildable: &Self::Type,
        builder: &Builder,
        name: &str,
        value: &Value
    ) { ... } fn parser_finished(&self, buildable: &Self::Type, builder: &Builder) { ... } fn internal_child(
        &self,
        buildable: &Self::Type,
        builder: &Builder,
        name: &str
    ) -> Option<Object> { ... } fn construct_child(
        &self,
        buildable: &Self::Type,
        builder: &Builder,
        name: &str
    ) -> Object { ... } }

Provided methods

Implementors