pub trait CellAreaBoxExt: 'static {
// Required methods
fn get_spacing(&self) -> i32;
fn pack_end<P: IsA<CellRenderer>>(
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool,
);
fn pack_start<P: IsA<CellRenderer>>(
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool,
);
fn set_spacing(&self, spacing: i32);
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
Required Methods§
fn get_spacing(&self) -> i32
fn pack_end<P: IsA<CellRenderer>>( &self, renderer: &P, expand: bool, align: bool, fixed: bool, )
fn pack_start<P: IsA<CellRenderer>>( &self, renderer: &P, expand: bool, align: bool, fixed: bool, )
fn set_spacing(&self, spacing: i32)
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
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.