libadwaita/auto/animation_target.rs
1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from
3// from gir-files (https://github.com/gtk-rs/gir-files.git)
4// DO NOT EDIT
5
6use crate::ffi;
7
8glib::wrapper! {
9 /// Represents a value [`Animation`][crate::Animation] can animate.
10 ///
11 /// This is an Abstract Base Class, you cannot instantiate it.
12 ///
13 /// # Implements
14 ///
15 /// [`trait@glib::ObjectExt`]
16 #[doc(alias = "AdwAnimationTarget")]
17 pub struct AnimationTarget(Object<ffi::AdwAnimationTarget, ffi::AdwAnimationTargetClass>);
18
19 match fn {
20 type_ => || ffi::adw_animation_target_get_type(),
21 }
22}
23
24impl AnimationTarget {
25 pub const NONE: Option<&'static AnimationTarget> = None;
26}