pub struct AudioFeaturePoint {
pub start_seconds: f32,
pub end_seconds: f32,
pub values: BTreeMap<String, f32>,
}Expand description
One window of generic audio feature values.
Fields§
§start_seconds: f32Window start time in seconds.
end_seconds: f32Window end time in seconds.
values: BTreeMap<String, f32>Named finite feature values for this window.
Implementations§
Trait Implementations§
Source§impl Clone for AudioFeaturePoint
impl Clone for AudioFeaturePoint
Source§fn clone(&self) -> AudioFeaturePoint
fn clone(&self) -> AudioFeaturePoint
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 AudioFeaturePoint
impl Debug for AudioFeaturePoint
Source§impl<'de> Deserialize<'de> for AudioFeaturePoint
impl<'de> Deserialize<'de> for AudioFeaturePoint
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
Source§impl PartialEq for AudioFeaturePoint
impl PartialEq for AudioFeaturePoint
Source§fn eq(&self, other: &AudioFeaturePoint) -> bool
fn eq(&self, other: &AudioFeaturePoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AudioFeaturePoint
impl Serialize for AudioFeaturePoint
impl StructuralPartialEq for AudioFeaturePoint
Auto Trait Implementations§
impl Freeze for AudioFeaturePoint
impl RefUnwindSafe for AudioFeaturePoint
impl Send for AudioFeaturePoint
impl Sync for AudioFeaturePoint
impl Unpin for AudioFeaturePoint
impl UnsafeUnpin for AudioFeaturePoint
impl UnwindSafe for AudioFeaturePoint
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