pub trait ListModelImplExt: ObjectSubclass {
    fn parent_item_type(&self) -> Type;
    fn parent_n_items(&self) -> u32;
    fn parent_item(&self, position: u32) -> Option<Object>;
}

Required Methods§

Implementors§