IconExt

Trait IconExt 

Source
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§

Source

fn equal(&self, icon2: Option<&impl IsA<Icon>>) -> bool

Source

fn hash(&self) -> u32

Source

fn serialize(&self) -> Option<Variant>

Source

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.

Implementors§

Source§

impl<O: IsA<Icon>> IconExt for O