animate/legacy/action.rs
1use crate::ActorMeta;
2use glib::{object as gobject, translate::*};
3use std::fmt;
4
5glib_wrapper! {
6 pub struct Action(Object<ffi::ClutterAction, ffi::ClutterActionClass, ActionClass>) @extends ActorMeta, gobject::InitiallyUnowned;
7
8 match fn {
9 get_type => || ffi::clutter_action_get_type(),
10 }
11}
12
13impl Action {}
14
15impl fmt::Display for Action {
16 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
17 write!(f, "Action")
18 }
19}