Struct symphonia_core::meta::VendorData
source · pub struct VendorData {
pub ident: String,
pub data: Box<[u8]>,
}
Expand description
VendorData
is any binary metadata that is proprietary to a certain application or vendor.
Fields§
§ident: String
A text representation of the vendor’s application identifier.
data: Box<[u8]>
The vendor data.
Trait Implementations§
source§impl Clone for VendorData
impl Clone for VendorData
source§fn clone(&self) -> VendorData
fn clone(&self) -> VendorData
Returns a copy 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 moreAuto Trait Implementations§
impl RefUnwindSafe for VendorData
impl Send for VendorData
impl Sync for VendorData
impl Unpin for VendorData
impl UnwindSafe for VendorData
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