gtk4 0.5.5

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 glib::object::IsA;
use std::fmt;

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: 'static {}

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

impl fmt::Display for BuilderScope {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("BuilderScope")
    }
}