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) -> EasingTime
pub fn new(factor: Factor) -> EasingTime
New from Factor
.
The factor
is clamped to the [0..=1] range.
sourcepub fn elapsed(
duration: Duration,
elapsed: Duration,
time_scale: Factor,
) -> EasingTime
pub fn elapsed( duration: Duration, elapsed: Duration, time_scale: Factor, ) -> EasingTime
New easing time from total duration
, elapsed
time and time_scale
.
If elapsed >= duration
the time is 1.
sourcepub fn start() -> EasingTime
pub fn start() -> EasingTime
Gets the start time, zero.
sourcepub fn end() -> EasingTime
pub fn end() -> EasingTime
Gets the end time, one.
sourcepub fn pct(self) -> FactorPercent
pub fn pct(self) -> FactorPercent
Get the time as a FactorPercent
.
sourcepub fn reverse(self) -> EasingTime
pub fn reverse(self) -> EasingTime
Flip the time.
Returns 1 - self
.
Trait Implementations§
source§impl Add for EasingTime
impl Add for EasingTime
source§type Output = EasingTime
type Output = EasingTime
The resulting type after applying the
+
operator.source§fn add(self, rhs: EasingTime) -> <EasingTime as Add>::Output
fn add(self, rhs: EasingTime) -> <EasingTime as Add>::Output
Performs the
+
operation. Read moresource§impl AddAssign for EasingTime
impl AddAssign for EasingTime
source§fn add_assign(&mut self, rhs: EasingTime)
fn add_assign(&mut self, rhs: EasingTime)
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§fn from(factor: Factor) -> EasingTime
fn from(factor: Factor) -> EasingTime
Converts to this type from the input type.
source§impl Hash for EasingTime
impl Hash for EasingTime
source§impl IntoVar<EasingTime> for Factor
impl IntoVar<EasingTime> for Factor
source§fn into_var(self) -> <Factor as IntoVar<EasingTime>>::Var
fn into_var(self) -> <Factor as IntoVar<EasingTime>>::Var
Converts the source value into a var.
source§fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>where
Self: Sized,
fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>where
Self: Sized,
Converts into
BoxedVar<T>
. Read moresource§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§type Output = EasingTime
type Output = EasingTime
The resulting type after applying the
-
operator.source§fn sub(self, rhs: EasingTime) -> <EasingTime as Sub>::Output
fn sub(self, rhs: EasingTime) -> <EasingTime as Sub>::Output
Performs the
-
operation. Read moresource§impl SubAssign for EasingTime
impl SubAssign for EasingTime
source§fn sub_assign(&mut self, rhs: EasingTime)
fn sub_assign(&mut self, rhs: EasingTime)
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§
§impl<T> AnyEq for T
impl<T> AnyEq for T
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> FsChangeNote for T
impl<T> FsChangeNote for T
§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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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