pub trait Unplaced: IntoAnimNode {
// Provided method
fn at(self, offset_sec: f64) -> At<Self> { ... }
}Expand description
Capability for animation definitions that have not been fixed in parent time coordinates.
This trait is used to constrain the anims that can be inserted into
AnimSequence. Only
anims that are not placed can be inserted into it.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".