gtk4/auto/builder_scope.rs
1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use crate::ffi;
6use glib::prelude::*;
7
8glib::wrapper! {
9 #[doc(alias = "GtkBuilderScope")]
10 pub struct BuilderScope(Interface<ffi::GtkBuilderScope, ffi::GtkBuilderScopeInterface>);
11
12 match fn {
13 type_ => || ffi::gtk_builder_scope_get_type(),
14 }
15}
16
17impl BuilderScope {
18 pub const NONE: Option<&'static BuilderScope> = None;
19}
20
21pub trait BuilderScopeExt: IsA<BuilderScope> + 'static {}
22
23impl<O: IsA<BuilderScope>> BuilderScopeExt for O {}