libadwaita::subclass::prelude

Trait CellLayoutImpl

source
pub trait CellLayoutImpl: ObjectImpl + ObjectSubclass
where Self::Type: IsA<CellLayout>,
{ // Provided methods fn add_attribute<R>(&self, cell: &R, attribute: &str, column: i32) where R: IsA<CellRenderer> { ... } fn clear_attributes<R>(&self, cell: &R) where R: IsA<CellRenderer> { ... } fn cells(&self) -> Vec<CellRenderer> { ... } fn set_cell_data_func<R>( &self, cell: &R, callback: Option<CellLayoutDataCallback>, ) where R: IsA<CellRenderer> { ... } fn reorder<R>(&self, cell: &R, position: i32) where R: IsA<CellRenderer> { ... } fn clear(&self) { ... } fn pack_start<R>(&self, cell: &R, expand: bool) where R: IsA<CellRenderer> { ... } fn pack_end<R>(&self, cell: &R, expand: bool) where R: IsA<CellRenderer> { ... } fn area(&self) -> Option<CellArea> { ... } }

Provided Methods§

source

fn add_attribute<R>(&self, cell: &R, attribute: &str, column: i32)
where R: IsA<CellRenderer>,

source

fn clear_attributes<R>(&self, cell: &R)
where R: IsA<CellRenderer>,

source

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

source

fn set_cell_data_func<R>( &self, cell: &R, callback: Option<CellLayoutDataCallback>, )
where R: IsA<CellRenderer>,

source

fn reorder<R>(&self, cell: &R, position: i32)
where R: IsA<CellRenderer>,

source

fn clear(&self)

source

fn pack_start<R>(&self, cell: &R, expand: bool)
where R: IsA<CellRenderer>,

source

fn pack_end<R>(&self, cell: &R, expand: bool)
where R: IsA<CellRenderer>,

source

fn area(&self) -> Option<CellArea>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§