gtk4 0.11.2

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::{Accessible, ffi};
use glib::prelude::*;

glib::wrapper! {
    #[doc(alias = "GtkAccessibleHypertext")]
    pub struct AccessibleHypertext(Interface<ffi::GtkAccessibleHypertext, ffi::GtkAccessibleHypertextInterface>) @requires Accessible;

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

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

pub trait AccessibleHypertextExt: IsA<AccessibleHypertext> + 'static {}

impl<O: IsA<AccessibleHypertext>> AccessibleHypertextExt for O {}