pub struct StreamAnalysis {
pub overall_confidence: f64,
pub short_streams: usize,
pub medium_streams: usize,
pub long_streams: usize,
pub max_stream_length: usize,
pub stream_density: f64,
pub bpm_consistency: f64,
}Fields§
§overall_confidence: f64§short_streams: usize§medium_streams: usize§long_streams: usize§max_stream_length: usize§stream_density: f64§bpm_consistency: f64Trait Implementations§
Source§impl Clone for StreamAnalysis
impl Clone for StreamAnalysis
Source§fn clone(&self) -> StreamAnalysis
fn clone(&self) -> StreamAnalysis
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 StreamAnalysis
impl Debug for StreamAnalysis
Source§impl<'de> Deserialize<'de> for StreamAnalysis
impl<'de> Deserialize<'de> for StreamAnalysis
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 StreamAnalysis
Auto Trait Implementations§
impl Freeze for StreamAnalysis
impl RefUnwindSafe for StreamAnalysis
impl Send for StreamAnalysis
impl Sync for StreamAnalysis
impl Unpin for StreamAnalysis
impl UnwindSafe for StreamAnalysis
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