pub struct FlacScan {
pub audio_offset: u64,
pub audio_length: u64,
pub preserved: Vec<MetadataBlock>,
}Expand description
Result of scanning a FLAC file: where audio begins/ends and the structural blocks to preserve.
Fields§
§audio_offset: u64§audio_length: u64§preserved: Vec<MetadataBlock>Trait Implementations§
impl Eq for FlacScan
impl StructuralPartialEq for FlacScan
Auto Trait Implementations§
impl Freeze for FlacScan
impl RefUnwindSafe for FlacScan
impl Send for FlacScan
impl Sync for FlacScan
impl Unpin for FlacScan
impl UnsafeUnpin for FlacScan
impl UnwindSafe for FlacScan
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