pub struct StreamIdentifierDescriptor {
pub component_tag: u8,
}Expand description
Stream Identifier Descriptor.
Fields§
§component_tag: u8Component tag used to cross-reference a component_descriptor.
Trait Implementations§
Source§impl Clone for StreamIdentifierDescriptor
impl Clone for StreamIdentifierDescriptor
Source§fn clone(&self) -> StreamIdentifierDescriptor
fn clone(&self) -> StreamIdentifierDescriptor
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 StreamIdentifierDescriptor
impl Debug for StreamIdentifierDescriptor
Source§impl<'a> Descriptor<'a> for StreamIdentifierDescriptor
impl<'a> Descriptor<'a> for StreamIdentifierDescriptor
Source§impl<'a> DescriptorDef<'a> for StreamIdentifierDescriptor
impl<'a> DescriptorDef<'a> for StreamIdentifierDescriptor
impl Eq for StreamIdentifierDescriptor
Source§impl<'a> From<StreamIdentifierDescriptor> for AnyDescriptor<'a>
impl<'a> From<StreamIdentifierDescriptor> for AnyDescriptor<'a>
Source§fn from(d: StreamIdentifierDescriptor) -> Self
fn from(d: StreamIdentifierDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for StreamIdentifierDescriptor
impl<'a> Parse<'a> for StreamIdentifierDescriptor
Source§impl PartialEq for StreamIdentifierDescriptor
impl PartialEq for StreamIdentifierDescriptor
Source§fn eq(&self, other: &StreamIdentifierDescriptor) -> bool
fn eq(&self, other: &StreamIdentifierDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StreamIdentifierDescriptor
impl Serialize for StreamIdentifierDescriptor
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 StreamIdentifierDescriptor
Auto Trait Implementations§
impl Freeze for StreamIdentifierDescriptor
impl RefUnwindSafe for StreamIdentifierDescriptor
impl Send for StreamIdentifierDescriptor
impl Sync for StreamIdentifierDescriptor
impl Unpin for StreamIdentifierDescriptor
impl UnsafeUnpin for StreamIdentifierDescriptor
impl UnwindSafe for StreamIdentifierDescriptor
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