pub trait IconExt: IsA<Icon> + 'static {
// Provided methods
fn equal(&self, icon2: Option<&impl IsA<Icon>>) -> bool { ... }
fn hash(&self) -> u32 { ... }
fn serialize(&self) -> Option<Variant> { ... }
fn to_string(&self) -> Option<GString> { ... }
}Provided Methods§
fn equal(&self, icon2: Option<&impl IsA<Icon>>) -> bool
fn hash(&self) -> u32
fn serialize(&self) -> Option<Variant>
fn to_string(&self) -> Option<GString>
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.