pango/auto/
engine_lang.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 glib::translate::*;
6use pango_sys;
7use std::fmt;
8
9glib_wrapper! {
10    pub struct EngineLang(Object<pango_sys::PangoEngineLang, pango_sys::PangoEngineLangClass, EngineLangClass>);
11
12    match fn {
13        get_type => || pango_sys::pango_engine_lang_get_type(),
14    }
15}
16
17impl EngineLang {}
18
19pub const NONE_ENGINE_LANG: Option<&EngineLang> = None;
20
21impl fmt::Display for EngineLang {
22    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
23        write!(f, "EngineLang")
24    }
25}