Skip to main content

Animatable

Trait Animatable 

Source
pub trait Animatable:
    Interpolate
    + Clone
    + 'static { }
Expand description

Marker trait for cloneable, owned values that can be animated.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Animatable for T
where T: Interpolate + Clone + 'static,