pub struct ScratchMotion {
pub delta_angle_radians: f64,
pub rotation_degrees: f64,
pub current_time: f64,
pub sample_position: f64,
pub raw_playback_rate: f64,
pub filtered_playback_rate: f64,
pub physical_playback_rate: f64,
}Fields§
§delta_angle_radians: f64§rotation_degrees: f64§current_time: f64§sample_position: f64§raw_playback_rate: f64§filtered_playback_rate: f64§physical_playback_rate: f64Trait Implementations§
Source§impl Clone for ScratchMotion
impl Clone for ScratchMotion
Source§fn clone(&self) -> ScratchMotion
fn clone(&self) -> ScratchMotion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScratchMotion
Source§impl Debug for ScratchMotion
impl Debug for ScratchMotion
Auto Trait Implementations§
impl Freeze for ScratchMotion
impl RefUnwindSafe for ScratchMotion
impl Send for ScratchMotion
impl Sync for ScratchMotion
impl Unpin for ScratchMotion
impl UnsafeUnpin for ScratchMotion
impl UnwindSafe for ScratchMotion
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