gtk4 0.10.3

Rust bindings of the GTK 4 library
Documentation
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::ffi;
use glib::prelude::*;

glib::wrapper! {
    #[doc(alias = "GtkBuilderScope")]
    pub struct BuilderScope(Interface<ffi::GtkBuilderScope, ffi::GtkBuilderScopeInterface>);

    match fn {
        type_ => || ffi::gtk_builder_scope_get_type(),
    }
}

impl BuilderScope {
    pub const NONE: Option<&'static BuilderScope> = None;
}

pub trait BuilderScopeExt: IsA<BuilderScope> + 'static {}

impl<O: IsA<BuilderScope>> BuilderScopeExt for O {}