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 
5 use std::fmt;
6 
7 glib::wrapper! {
8     #[doc(alias = "AtkUtil")]
9     pub struct Util(Object<ffi::AtkUtil, ffi::AtkUtilClass>);
10 
11     match fn {
12         type_ => || ffi::atk_util_get_type(),
13     }
14 }
15 
16 impl Util {}
17 
18 pub const NONE_UTIL: Option<&Util> = None;
19 
20 impl fmt::Display for Util {
fmt(&self, f: &mut fmt::Formatter) -> fmt::Result21     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
22         f.write_str("Util")
23     }
24 }
25