Skip to main content

CellLayoutImplExt

Trait CellLayoutImplExt 

Source
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§

Source

fn parent_pack_start(&self, cell: &CellRenderer, expand: bool)

Source

fn parent_pack_end(&self, cell: &CellRenderer, expand: bool)

Source

fn parent_clear(&self)

Source

fn parent_add_attribute( &self, cell: &CellRenderer, attribute: &str, column: i32, )

Source

fn parent_set_cell_data_func( &self, cell: &CellRenderer, cell_data_func: Option<CellDataFunc>, )

Source

fn parent_clear_attributes(&self, cell: &CellRenderer)

Source

fn parent_reorder(&self, cell: &CellRenderer, position: i32)

Source

fn parent_cells(&self) -> Vec<CellRenderer>

Source

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".

Implementors§