Struct raui_core::animator::AnimatedValueProgress  
source · pub struct AnimatedValueProgress {
    pub progress_factor: Scalar,
    pub time: Scalar,
    pub duration: Scalar,
}Expand description
The amount of progress made for a value in an animation
Fields§
§progress_factor: ScalarHow far along this animation is from 0 to 1
time: ScalarThe amount of time this animation has been running
duration: ScalarThe amount of time that this animation will run for
Trait Implementations§
source§impl Clone for AnimatedValueProgress
 
impl Clone for AnimatedValueProgress
source§fn clone(&self) -> AnimatedValueProgress
 
fn clone(&self) -> AnimatedValueProgress
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 AnimatedValueProgress
 
impl Debug for AnimatedValueProgress
source§impl Default for AnimatedValueProgress
 
impl Default for AnimatedValueProgress
source§fn default() -> AnimatedValueProgress
 
fn default() -> AnimatedValueProgress
Returns the “default value” for a type. Read more
impl Copy for AnimatedValueProgress
Auto Trait Implementations§
impl RefUnwindSafe for AnimatedValueProgress
impl Send for AnimatedValueProgress
impl Sync for AnimatedValueProgress
impl Unpin for AnimatedValueProgress
impl UnwindSafe for AnimatedValueProgress
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