Skip to main content

gdkx11/auto/
x11_device_manager_core.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 std::fmt;
6
7glib::wrapper! {
8    ///
9    ///
10    /// # Implements
11    ///
12    /// [`trait@gdk::prelude::DeviceManagerExt`]
13    #[doc(alias = "GdkX11DeviceManagerCore")]
14    pub struct X11DeviceManagerCore(Object<ffi::GdkX11DeviceManagerCore, ffi::GdkX11DeviceManagerCoreClass>) @extends gdk::DeviceManager;
15
16    match fn {
17        type_ => || ffi::gdk_x11_device_manager_core_get_type(),
18    }
19}
20
21impl X11DeviceManagerCore {
22    pub const NONE: Option<&'static X11DeviceManagerCore> = None;
23}
24
25impl fmt::Display for X11DeviceManagerCore {
26    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
27        f.write_str("X11DeviceManagerCore")
28    }
29}