atk/auto/
util.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 atk_sys;
6use glib::translate::*;
7use std::fmt;
8
9glib_wrapper! {
10    pub struct Util(Object<atk_sys::AtkUtil, atk_sys::AtkUtilClass, UtilClass>);
11
12    match fn {
13        get_type => || atk_sys::atk_util_get_type(),
14    }
15}
16
17impl Util {}
18
19pub const NONE_UTIL: Option<&Util> = None;
20
21impl fmt::Display for Util {
22    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
23        write!(f, "Util")
24    }
25}