pub struct Clip {
pub name: String,
pub duration_s: f64,
pub tracks: Vec<Track>,
}Expand description
One animation clip targeting the document skeleton.
Fields§
§name: StringClip name, used as the key in measurement maps and config expectations.
duration_s: f64Clip length in seconds (max sampler end time across tracks).
tracks: Vec<Track>Animated tracks belonging to this clip.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Clip
impl RefUnwindSafe for Clip
impl Send for Clip
impl Sync for Clip
impl Unpin for Clip
impl UnsafeUnpin for Clip
impl UnwindSafe for Clip
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more