pub struct RecordedTrack {
pub label: String,
pub samples: Vec<RecordedSample>,
}Expand description
Samples for one recorded animation label.
Fields§
§label: StringTrack label.
samples: Vec<RecordedSample>Time-ordered samples.
Trait Implementations§
Source§impl Clone for RecordedTrack
impl Clone for RecordedTrack
Source§fn clone(&self) -> RecordedTrack
fn clone(&self) -> RecordedTrack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecordedTrack
impl Debug for RecordedTrack
Source§impl PartialEq for RecordedTrack
impl PartialEq for RecordedTrack
Source§fn eq(&self, other: &RecordedTrack) -> bool
fn eq(&self, other: &RecordedTrack) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordedTrack
Auto Trait Implementations§
impl Freeze for RecordedTrack
impl RefUnwindSafe for RecordedTrack
impl Send for RecordedTrack
impl Sync for RecordedTrack
impl Unpin for RecordedTrack
impl UnsafeUnpin for RecordedTrack
impl UnwindSafe for RecordedTrack
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