animate/legacy/
model.rs

1use glib::translate::*;
2use std::fmt;
3
4glib_wrapper! {
5    pub struct Model(Object<ffi::ClutterModel, ffi::ClutterModelClass, ModelClass>);
6
7    match fn {
8        get_type => || ffi::clutter_model_get_type(),
9    }
10}
11
12impl Model {}
13
14impl fmt::Display for Model {
15    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
16        write!(f, "Model")
17    }
18}