pub struct PrivateDataIndicatorDescriptor {
pub private_data_specifier: [u8; 4],
}Expand description
Private Data Indicator Descriptor.
The private_data_specifier is a 4-byte value assigned by a standards body
or industry consortium to identify the organization that defined the private
data format used in the associated elementary stream.
Fields§
§private_data_specifier: [u8; 4]4-byte private data specifier identifier.
Trait Implementations§
Source§impl Clone for PrivateDataIndicatorDescriptor
impl Clone for PrivateDataIndicatorDescriptor
Source§fn clone(&self) -> PrivateDataIndicatorDescriptor
fn clone(&self) -> PrivateDataIndicatorDescriptor
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<'a> Descriptor<'a> for PrivateDataIndicatorDescriptor
impl<'a> Descriptor<'a> for PrivateDataIndicatorDescriptor
Source§impl<'a> DescriptorDef<'a> for PrivateDataIndicatorDescriptor
impl<'a> DescriptorDef<'a> for PrivateDataIndicatorDescriptor
impl Eq for PrivateDataIndicatorDescriptor
Source§impl<'a> From<PrivateDataIndicatorDescriptor> for AnyDescriptor<'a>
impl<'a> From<PrivateDataIndicatorDescriptor> for AnyDescriptor<'a>
Source§fn from(d: PrivateDataIndicatorDescriptor) -> Self
fn from(d: PrivateDataIndicatorDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for PrivateDataIndicatorDescriptor
impl<'a> Parse<'a> for PrivateDataIndicatorDescriptor
Source§impl PartialEq for PrivateDataIndicatorDescriptor
impl PartialEq for PrivateDataIndicatorDescriptor
Source§fn eq(&self, other: &PrivateDataIndicatorDescriptor) -> bool
fn eq(&self, other: &PrivateDataIndicatorDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PrivateDataIndicatorDescriptor
impl Serialize for PrivateDataIndicatorDescriptor
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for PrivateDataIndicatorDescriptor
Auto Trait Implementations§
impl Freeze for PrivateDataIndicatorDescriptor
impl RefUnwindSafe for PrivateDataIndicatorDescriptor
impl Send for PrivateDataIndicatorDescriptor
impl Sync for PrivateDataIndicatorDescriptor
impl Unpin for PrivateDataIndicatorDescriptor
impl UnsafeUnpin for PrivateDataIndicatorDescriptor
impl UnwindSafe for PrivateDataIndicatorDescriptor
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