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 Freeze for VendorData
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