gdk4/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 content_provider;
7pub mod paintable;
8
9// rustdoc-stripper-ignore-next
10/// Traits intended for blanket imports.
11pub mod prelude {
12    #[doc(hidden)]
13    pub use gio::subclass::prelude::*;
14
15    pub use super::{
16        content_provider::{ContentProviderImpl, ContentProviderImplExt},
17        paintable::{PaintableImpl, PaintableImplExt},
18    };
19}