pango 0.9.1

Rust bindings for the Pango library
Documentation
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib::translate::*;
use pango_sys;
use std::fmt;

glib_wrapper! {
    pub struct EngineShape(Object<pango_sys::PangoEngineShape, pango_sys::PangoEngineShapeClass, EngineShapeClass>);

    match fn {
        get_type => || pango_sys::pango_engine_shape_get_type(),
    }
}

impl EngineShape {}

pub const NONE_ENGINE_SHAPE: Option<&EngineShape> = None;

impl fmt::Display for EngineShape {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "EngineShape")
    }
}