pub struct JumpAnalysis {
pub overall_confidence: f64,
pub total_jump_count: usize,
pub max_jump_length: usize,
pub long_jumps: usize,
pub medium_jumps: usize,
pub short_jumps: usize,
pub jump_density: f64,
pub bpm_consistency: f64,
}Fields§
§overall_confidence: f64§total_jump_count: usize§max_jump_length: usize§long_jumps: usize§medium_jumps: usize§short_jumps: usize§jump_density: f64§bpm_consistency: f64Trait Implementations§
Source§impl Clone for JumpAnalysis
impl Clone for JumpAnalysis
Source§fn clone(&self) -> JumpAnalysis
fn clone(&self) -> JumpAnalysis
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 JumpAnalysis
impl Debug for JumpAnalysis
Source§impl<'de> Deserialize<'de> for JumpAnalysis
impl<'de> Deserialize<'de> for JumpAnalysis
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for JumpAnalysis
Auto Trait Implementations§
impl Freeze for JumpAnalysis
impl RefUnwindSafe for JumpAnalysis
impl Send for JumpAnalysis
impl Sync for JumpAnalysis
impl Unpin for JumpAnalysis
impl UnwindSafe for JumpAnalysis
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