pub trait CellAreaContextImpl: ObjectImpl + ObjectSubclass{
// Provided methods
fn reset(&self) { ... }
fn preferred_height_for_width(&self, width: i32) -> (i32, i32) { ... }
fn preferred_width_for_height(&self, height: i32) -> (i32, i32) { ... }
fn allocate(&self, width: i32, height: i32) { ... }
}๐Deprecated: Since 4.10
Provided Methodsยง
fn reset(&self)
๐Deprecated: Since 4.10
fn preferred_height_for_width(&self, width: i32) -> (i32, i32)
๐Deprecated: Since 4.10
fn preferred_width_for_height(&self, height: i32) -> (i32, i32)
๐Deprecated: Since 4.10
fn allocate(&self, width: i32, height: i32)
๐Deprecated: Since 4.10
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.