pub enum TrackSample {
Vec3(Vec3),
Quat(Quat),
}Expand description
One track’s sampled value at a time.
Variants§
Trait Implementations§
Source§impl Clone for TrackSample
impl Clone for TrackSample
Source§fn clone(&self) -> TrackSample
fn clone(&self) -> TrackSample
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 moreimpl Copy for TrackSample
Source§impl Debug for TrackSample
impl Debug for TrackSample
Source§impl PartialEq for TrackSample
impl PartialEq for TrackSample
impl StructuralPartialEq for TrackSample
Auto Trait Implementations§
impl Freeze for TrackSample
impl RefUnwindSafe for TrackSample
impl Send for TrackSample
impl Sync for TrackSample
impl Unpin for TrackSample
impl UnsafeUnpin for TrackSample
impl UnwindSafe for TrackSample
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