pub struct AudioAnalysisTrack {Show 26 fields
pub num_samples: u32,
pub duration: f32,
pub sample_md5: String,
pub offset_seconds: u32,
pub window_seconds: u32,
pub analysis_sample_rate: i32,
pub analysis_channels: u32,
pub end_of_fade_in: f32,
pub start_of_fade_out: f32,
pub loudness: f32,
pub tempo: f32,
pub tempo_confidence: f32,
pub time_signature: i32,
pub time_signature_confidence: f32,
pub key: u32,
pub key_confidence: f32,
pub mode: Modality,
pub mode_confidence: f32,
pub codestring: String,
pub code_version: f32,
pub echoprintstring: String,
pub echoprint_version: f32,
pub synchstring: String,
pub synch_version: f32,
pub rhythmstring: String,
pub rhythm_version: f32,
}Expand description
Audio analysis track object
Fields§
§num_samples: u32§duration: f32§sample_md5: String§offset_seconds: u32§window_seconds: u32§analysis_sample_rate: i32§analysis_channels: u32§end_of_fade_in: f32§start_of_fade_out: f32§loudness: f32§tempo: f32§tempo_confidence: f32§time_signature: i32§time_signature_confidence: f32§key: u32§key_confidence: f32§mode: Modality§mode_confidence: f32§codestring: String§code_version: f32§echoprintstring: String§echoprint_version: f32§synchstring: String§synch_version: f32§rhythmstring: String§rhythm_version: f32Trait Implementations§
Source§impl Clone for AudioAnalysisTrack
impl Clone for AudioAnalysisTrack
Source§fn clone(&self) -> AudioAnalysisTrack
fn clone(&self) -> AudioAnalysisTrack
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 AudioAnalysisTrack
impl Debug for AudioAnalysisTrack
Source§impl<'de> Deserialize<'de> for AudioAnalysisTrack
impl<'de> Deserialize<'de> for AudioAnalysisTrack
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AudioAnalysisTrack, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AudioAnalysisTrack, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AudioAnalysisTrack
impl PartialEq for AudioAnalysisTrack
Source§impl Serialize for AudioAnalysisTrack
impl Serialize for AudioAnalysisTrack
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AudioAnalysisTrack
Auto Trait Implementations§
impl Freeze for AudioAnalysisTrack
impl RefUnwindSafe for AudioAnalysisTrack
impl Send for AudioAnalysisTrack
impl Sync for AudioAnalysisTrack
impl Unpin for AudioAnalysisTrack
impl UnwindSafe for AudioAnalysisTrack
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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