pub struct AutomixAnalysis {Show 26 fields
pub version: u32,
pub mode: AutomixAnalysisMode,
pub duration: f64,
pub analyze_window: f64,
pub bpm: Option<f64>,
pub bpm_confidence: Option<f64>,
pub first_beat_pos: Option<f64>,
pub loudness: Option<f64>,
pub true_peak_dbtp: Option<f64>,
pub fade_in_pos: f64,
pub fade_out_pos: f64,
pub cut_in_pos: Option<f64>,
pub cut_out_pos: Option<f64>,
pub mix_center_pos: f64,
pub mix_start_pos: f64,
pub mix_end_pos: f64,
pub energy_profile: Vec<f64>,
pub drop_pos: Option<f64>,
pub vocal_in_pos: Option<f64>,
pub vocal_out_pos: Option<f64>,
pub vocal_last_in_pos: Option<f64>,
pub outro_energy_level: Option<f64>,
pub key_root: Option<i32>,
pub key_mode: Option<i32>,
pub key_confidence: Option<f64>,
pub camelot_key: Option<String>,
}Fields§
§version: u32§mode: AutomixAnalysisMode§duration: f64§analyze_window: f64§bpm: Option<f64>§bpm_confidence: Option<f64>§first_beat_pos: Option<f64>§loudness: Option<f64>§true_peak_dbtp: Option<f64>§fade_in_pos: f64§fade_out_pos: f64§cut_in_pos: Option<f64>§cut_out_pos: Option<f64>§mix_center_pos: f64§mix_start_pos: f64§mix_end_pos: f64§energy_profile: Vec<f64>§drop_pos: Option<f64>§vocal_in_pos: Option<f64>§vocal_out_pos: Option<f64>§vocal_last_in_pos: Option<f64>§outro_energy_level: Option<f64>§key_root: Option<i32>§key_mode: Option<i32>§key_confidence: Option<f64>§camelot_key: Option<String>Trait Implementations§
Source§impl Clone for AutomixAnalysis
impl Clone for AutomixAnalysis
Source§fn clone(&self) -> AutomixAnalysis
fn clone(&self) -> AutomixAnalysis
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 moreSource§impl Debug for AutomixAnalysis
impl Debug for AutomixAnalysis
Auto Trait Implementations§
impl Freeze for AutomixAnalysis
impl RefUnwindSafe for AutomixAnalysis
impl Send for AutomixAnalysis
impl Sync for AutomixAnalysis
impl Unpin for AutomixAnalysis
impl UnsafeUnpin for AutomixAnalysis
impl UnwindSafe for AutomixAnalysis
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<S, T> Duplex<S> for Twhere
T: FromSample<S> + ToSample<S>,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more