[go: up one dir, main page]

gdk4 0.10.3

Rust bindings of the GDK 4 library
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

// rustdoc-stripper-ignore-next
//! Traits intended for creating custom types.

pub mod content_provider;
pub mod paintable;

// rustdoc-stripper-ignore-next
/// Traits intended for blanket imports.
pub mod prelude {
    #[doc(hidden)]
    pub use gio::subclass::prelude::*;

    pub use super::{
        content_provider::{ContentProviderImpl, ContentProviderImplExt},
        paintable::{PaintableImpl, PaintableImplExt},
    };
}