Trait sourceview5::prelude::LoadableIconExt

source ·
pub trait LoadableIconExt: IsA<LoadableIcon> + Sealed + 'static {
    // Provided methods
    fn load(
        &self,
        size: i32,
        cancellable: Option<&impl IsA<Cancellable>>,
    ) -> Result<(InputStream, GString), Error> { ... }
    fn load_async<P>(
        &self,
        size: i32,
        cancellable: Option<&impl IsA<Cancellable>>,
        callback: P,
    )
       where P: FnOnce(Result<(InputStream, GString), Error>) + 'static { ... }
    fn load_future(
        &self,
        size: i32,
    ) -> Pin<Box<dyn Future<Output = Result<(InputStream, GString), Error>>>> { ... }
}

Provided Methods§

source

fn load( &self, size: i32, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<(InputStream, GString), Error>

source

fn load_async<P>( &self, size: i32, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
where P: FnOnce(Result<(InputStream, GString), Error>) + 'static,

source

fn load_future( &self, size: i32, ) -> Pin<Box<dyn Future<Output = Result<(InputStream, GString), Error>>>>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> LoadableIconExt for O
where O: IsA<LoadableIcon>,