[][src]Trait ommui_relm_widgets::LoadPixbufs

pub trait LoadPixbufs {
    type Loaded: Pixbufs;
    fn load_pixbufs(&self) -> Result<Self::Loaded>;
}

A trait for loading pixbufs from the icons of a source.

Associated Types

type Loaded: Pixbufs

The pixbufs type which gets loaded.

Loading content...

Required methods

fn load_pixbufs(&self) -> Result<Self::Loaded>

Load the pixbufs.

Loading content...

Implementors

impl<T: LoadableDevice> LoadPixbufs for T[src]

Loading content...