pub struct AudioMetadata {
pub source: Option<String>,
pub original_sr: Option<u32>,
pub duration: Option<AudioDuration>,
pub normalized: bool,
pub processing_chain: Vec<String>,
}Expand description
Audio metadata for tracking processing history
Fields§
§source: Option<String>Source identifier (file, stream, etc.)
original_sr: Option<u32>Original sample rate (before resampling)
duration: Option<AudioDuration>Duration in seconds
normalized: boolWhether audio has been normalized
processing_chain: Vec<String>Processing operations applied
Trait Implementations§
Source§impl Clone for AudioMetadata
impl Clone for AudioMetadata
Source§fn clone(&self) -> AudioMetadata
fn clone(&self) -> AudioMetadata
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 AudioMetadata
impl Debug for AudioMetadata
Source§impl Default for AudioMetadata
impl Default for AudioMetadata
Source§fn default() -> AudioMetadata
fn default() -> AudioMetadata
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AudioMetadata
impl RefUnwindSafe for AudioMetadata
impl Send for AudioMetadata
impl Sync for AudioMetadata
impl Unpin for AudioMetadata
impl UnsafeUnpin for AudioMetadata
impl UnwindSafe for AudioMetadata
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