pub struct TimeScaleLoopState {
pub is_repeating: bool,
pub is_reversing: bool,
}Expand description
Provides additional information about the relationship between a real time and a normalized position, taking into account repeat and/or reverse behavior.
Fields§
§is_repeating: boolWhether or not the position tagged with this state is considered a repetition, i.e. the timeline has completed at least one entire cycle before reaching it.
is_reversing: boolWhether or not the position tagged with this state is on the reverse pass of any cycle, including the first cycle.
Trait Implementations§
Source§impl Debug for TimeScaleLoopState
impl Debug for TimeScaleLoopState
Source§impl Default for TimeScaleLoopState
impl Default for TimeScaleLoopState
Source§fn default() -> TimeScaleLoopState
fn default() -> TimeScaleLoopState
Returns the “default value” for a type. Read more
Source§impl PartialEq for TimeScaleLoopState
impl PartialEq for TimeScaleLoopState
Source§fn eq(&self, other: &TimeScaleLoopState) -> bool
fn eq(&self, other: &TimeScaleLoopState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TimeScaleLoopState
impl StructuralPartialEq for TimeScaleLoopState
Auto Trait Implementations§
impl Freeze for TimeScaleLoopState
impl RefUnwindSafe for TimeScaleLoopState
impl Send for TimeScaleLoopState
impl Sync for TimeScaleLoopState
impl Unpin for TimeScaleLoopState
impl UnsafeUnpin for TimeScaleLoopState
impl UnwindSafe for TimeScaleLoopState
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