Trait IconExt

Source
pub trait IconExt: 'static {
    // Required methods
    fn equal<P: IsA<Icon>>(&self, icon2: Option<&P>) -> bool;
    fn serialize(&self) -> Option<Variant>;
    fn to_string(&self) -> Option<GString>;
}

Required Methods§

Source

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

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