pub struct AnimationTrack {
pub property: String,
pub timing: AnimationTiming,
pub value: AnimatedValue,
pub interpolation: AnimationInterpolation,
}Expand description
Animation track for a single property
Fields§
§property: StringProperty name being animated
timing: AnimationTimingAnimation timing
value: AnimatedValueAnimated value
interpolation: AnimationInterpolationInterpolation type
Implementations§
Source§impl AnimationTrack
impl AnimationTrack
Sourcepub fn new(
property: String,
timing: AnimationTiming,
value: AnimatedValue,
interpolation: AnimationInterpolation,
) -> Self
pub fn new( property: String, timing: AnimationTiming, value: AnimatedValue, interpolation: AnimationInterpolation, ) -> Self
Create a new animation track
Sourcepub fn evaluate(&self, time_cs: u32) -> AnimatedResult
pub fn evaluate(&self, time_cs: u32) -> AnimatedResult
Evaluate animation at given time
Trait Implementations§
Source§impl Clone for AnimationTrack
impl Clone for AnimationTrack
Source§fn clone(&self) -> AnimationTrack
fn clone(&self) -> AnimationTrack
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 moreAuto Trait Implementations§
impl Freeze for AnimationTrack
impl RefUnwindSafe for AnimationTrack
impl Send for AnimationTrack
impl Sync for AnimationTrack
impl Unpin for AnimationTrack
impl UnsafeUnpin for AnimationTrack
impl UnwindSafe for AnimationTrack
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more