pub trait PixbufLoaderImpl: ObjectImpl {
    // Provided methods
    fn size_prepared(&self, width: i32, height: i32) { ... }
    fn area_prepared(&self) { ... }
    fn area_updated(&self, x: i32, y: i32, width: i32, height: i32) { ... }
    fn closed(&self) { ... }
}

Provided Methods§

source

fn size_prepared(&self, width: i32, height: i32)

source

fn area_prepared(&self)

source

fn area_updated(&self, x: i32, y: i32, width: i32, height: i32)

source

fn closed(&self)

Implementors§