gdk_pixbuf/subclass/
mod.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3// rustdoc-stripper-ignore-next
4//! Traits intended for creating custom types.
5
6pub mod pixbuf_animation;
7pub mod pixbuf_animation_iter;
8pub mod pixbuf_loader;
9
10pub mod prelude {
11    pub use glib::subclass::prelude::*;
12
13    pub use gio::subclass::prelude::*;
14
15    pub use super::{
16        pixbuf_animation::{PixbufAnimationImpl, PixbufAnimationImplExt},
17        pixbuf_animation_iter::{PixbufAnimationIterImpl, PixbufAnimationIterImplExt},
18        pixbuf_loader::{PixbufLoaderImpl, PixbufLoaderImplExt},
19    };
20}