pub struct DrivenLoopProgress {
pub progress: f32,
pub animating: bool,
}Fields§
§progress: f32Normalized progress within the loop cycle. ([0.0, 1.0) while animating.)
animating: boolTrait Implementations§
Source§impl Clone for DrivenLoopProgress
impl Clone for DrivenLoopProgress
Source§fn clone(&self) -> DrivenLoopProgress
fn clone(&self) -> DrivenLoopProgress
Returns a duplicate 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 DrivenLoopProgress
impl Debug for DrivenLoopProgress
Source§impl PartialEq for DrivenLoopProgress
impl PartialEq for DrivenLoopProgress
impl Copy for DrivenLoopProgress
impl StructuralPartialEq for DrivenLoopProgress
Auto Trait Implementations§
impl Freeze for DrivenLoopProgress
impl RefUnwindSafe for DrivenLoopProgress
impl Send for DrivenLoopProgress
impl Sync for DrivenLoopProgress
impl Unpin for DrivenLoopProgress
impl UnsafeUnpin for DrivenLoopProgress
impl UnwindSafe for DrivenLoopProgress
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