pub struct AudioMetrics {
pub bass: f32,
pub mid: f32,
pub high: f32,
pub entropy: f32,
}Expand description
Audio metrics passed from JS via SharedArrayBuffer.
Fields§
§bass: f32§mid: f32§high: f32§entropy: f32Trait Implementations§
Source§impl Clone for AudioMetrics
impl Clone for AudioMetrics
Source§fn clone(&self) -> AudioMetrics
fn clone(&self) -> AudioMetrics
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 AudioMetrics
impl Debug for AudioMetrics
Source§impl Default for AudioMetrics
impl Default for AudioMetrics
Source§fn default() -> AudioMetrics
fn default() -> AudioMetrics
Returns the “default value” for a type. Read more
impl Copy for AudioMetrics
Auto Trait Implementations§
impl Freeze for AudioMetrics
impl RefUnwindSafe for AudioMetrics
impl Send for AudioMetrics
impl Sync for AudioMetrics
impl Unpin for AudioMetrics
impl UnsafeUnpin for AudioMetrics
impl UnwindSafe for AudioMetrics
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