pub struct StructuralBlock {
pub kind: String,
pub ordinal: u64,
pub body: Vec<u8>,
}Expand description
A read-only structural metadata block derived from the backing file
(FLAC STREAMINFO/SEEKTABLE). Stored outside the editable tags contract.
Fields§
§kind: String§ordinal: u64§body: Vec<u8>Trait Implementations§
Source§impl Clone for StructuralBlock
impl Clone for StructuralBlock
Source§fn clone(&self) -> StructuralBlock
fn clone(&self) -> StructuralBlock
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 StructuralBlock
impl Debug for StructuralBlock
impl Eq for StructuralBlock
Source§impl PartialEq for StructuralBlock
impl PartialEq for StructuralBlock
Source§fn eq(&self, other: &StructuralBlock) -> bool
fn eq(&self, other: &StructuralBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StructuralBlock
Auto Trait Implementations§
impl Freeze for StructuralBlock
impl RefUnwindSafe for StructuralBlock
impl Send for StructuralBlock
impl Sync for StructuralBlock
impl Unpin for StructuralBlock
impl UnsafeUnpin for StructuralBlock
impl UnwindSafe for StructuralBlock
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