Struct zng_var::animation::easing::EasingTime
source · pub struct EasingTime(/* private fields */);
Expand description
Easing function input.
An easing function converts this time into a EasingStep
factor.
The time is always in the [0..=1] range, factors are clamped to this range on creation.
Implementations§
source§impl EasingTime
impl EasingTime
sourcepub fn new(factor: Factor) -> Self
pub fn new(factor: Factor) -> Self
New from Factor
.
The factor
is clamped to the [0..=1] range.
sourcepub fn elapsed(
duration: Duration,
elapsed: Duration,
time_scale: Factor,
) -> Self
pub fn elapsed( duration: Duration, elapsed: Duration, time_scale: Factor, ) -> Self
New easing time from total duration
, elapsed
time and time_scale
.
If elapsed >= duration
the time is 1.
sourcepub fn pct(self) -> FactorPercent
pub fn pct(self) -> FactorPercent
Get the time as a FactorPercent
.
Trait Implementations§
source§impl Add for EasingTime
impl Add for EasingTime
source§impl AddAssign for EasingTime
impl AddAssign for EasingTime
source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moresource§impl Clone for EasingTime
impl Clone for EasingTime
source§fn clone(&self) -> EasingTime
fn clone(&self) -> EasingTime
Returns a copy of the value. Read more
1.0.0 · 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 EasingTime
impl Debug for EasingTime
source§impl From<Factor> for EasingTime
impl From<Factor> for EasingTime
source§impl Hash for EasingTime
impl Hash for EasingTime
source§impl IntoVar<EasingTime> for Factor
impl IntoVar<EasingTime> for Factor
source§impl PartialEq for EasingTime
impl PartialEq for EasingTime
source§impl PartialOrd for EasingTime
impl PartialOrd for EasingTime
source§impl Sub for EasingTime
impl Sub for EasingTime
source§impl SubAssign for EasingTime
impl SubAssign for EasingTime
source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-=
operation. Read moreimpl Copy for EasingTime
impl IntoValue<EasingTime> for Factor
impl StructuralPartialEq for EasingTime
Auto Trait Implementations§
impl Freeze for EasingTime
impl RefUnwindSafe for EasingTime
impl Send for EasingTime
impl Sync for EasingTime
impl Unpin for EasingTime
impl UnwindSafe for EasingTime
Blanket Implementations§
source§impl<T> AnyVarValue for Twhere
T: VarValue,
impl<T> AnyVarValue for Twhere
T: VarValue,
source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Access to mut
dyn Any
methods.source§fn clone_boxed(&self) -> Box<dyn AnyVarValue>
fn clone_boxed(&self) -> Box<dyn AnyVarValue>
Clone the value.
source§fn clone_boxed_var(&self) -> Box<dyn AnyVar>
fn clone_boxed_var(&self) -> Box<dyn AnyVar>
Clone the value into a new boxed
LocalVar<Self>
.source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
Gets if
self
equals other
.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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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