pub trait CellLayoutImplExt: CellLayoutImpl {
// Provided methods
fn parent_pack_start(&self, cell: &CellRenderer, expand: bool) { ... }
fn parent_pack_end(&self, cell: &CellRenderer, expand: bool) { ... }
fn parent_clear(&self) { ... }
fn parent_add_attribute(
&self,
cell: &CellRenderer,
attribute: &str,
column: i32,
) { ... }
fn parent_set_cell_data_func(
&self,
cell: &CellRenderer,
cell_data_func: Option<CellDataFunc>,
) { ... }
fn parent_clear_attributes(&self, cell: &CellRenderer) { ... }
fn parent_reorder(&self, cell: &CellRenderer, position: i32) { ... }
fn parent_cells(&self) -> Vec<CellRenderer> { ... }
fn parent_area(&self) -> Option<CellArea> { ... }
}Provided Methods§
fn parent_pack_start(&self, cell: &CellRenderer, expand: bool)
fn parent_pack_end(&self, cell: &CellRenderer, expand: bool)
fn parent_clear(&self)
fn parent_add_attribute( &self, cell: &CellRenderer, attribute: &str, column: i32, )
fn parent_set_cell_data_func( &self, cell: &CellRenderer, cell_data_func: Option<CellDataFunc>, )
fn parent_clear_attributes(&self, cell: &CellRenderer)
fn parent_reorder(&self, cell: &CellRenderer, position: i32)
fn parent_cells(&self) -> Vec<CellRenderer>
fn parent_area(&self) -> Option<CellArea>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".