pub trait BuildableImplExt: ObjectSubclass {
fn parent_set_id(&self, buildable: &Self::Type, id: &str);
fn parent_id(&self, buildable: &Self::Type) -> Option<GString>;
fn parent_add_child(
&self,
buildable: &Self::Type,
builder: &Builder,
child: &Object,
type_: Option<&str>
);
fn parent_set_buildable_property(
&self,
buildable: &Self::Type,
builder: &Builder,
name: &str,
value: &Value
);
fn parent_parser_finished(&self, buildable: &Self::Type, builder: &Builder);
fn parent_internal_child(
&self,
buildable: &Self::Type,
builder: &Builder,
name: &str
) -> Option<Object>;
fn parent_construct_child(
&self,
buildable: &Self::Type,
builder: &Builder,
name: &str
) -> Object;
}