pub trait ImageExtManual:
IsA<Image>
+ Sealed
+ 'static {
// Provided methods
fn icon_size(&self) -> IconSize { ... }
fn set_icon_size(&self, icon_size: IconSize) { ... }
fn connect_icon_size_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}Provided Methods§
fn icon_size(&self) -> IconSize
fn set_icon_size(&self, icon_size: IconSize)
fn connect_icon_size_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".