pango/auto/
engine_shape.rs1use glib::translate::*;
6use pango_sys;
7use std::fmt;
8
9glib_wrapper! {
10 pub struct EngineShape(Object<pango_sys::PangoEngineShape, pango_sys::PangoEngineShapeClass, EngineShapeClass>);
11
12 match fn {
13 get_type => || pango_sys::pango_engine_shape_get_type(),
14 }
15}
16
17impl EngineShape {}
18
19pub const NONE_ENGINE_SHAPE: Option<&EngineShape> = None;
20
21impl fmt::Display for EngineShape {
22 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
23 write!(f, "EngineShape")
24 }
25}