Skip to main content

SubgroupStreamType

Struct SubgroupStreamType 

Source
pub struct SubgroupStreamType(u8);
Expand description

Subgroup stream type byte (§10.4.2, Table 7).

The 12 defined types encode four independent boolean fields in the low nibble:

  • bit 0 (0x01) — Extensions Present
  • bit 1 (0x02) — Subgroup ID derives from first Object ID (only meaningful when bit 2 is clear)
  • bit 2 (0x04) — Subgroup ID Field Present (explicit Subgroup ID varint)
  • bit 3 (0x08) — Contains End of Group

Tuple Fields§

§0: u8

Implementations§

Source§

impl SubgroupStreamType

Source

pub fn as_u8(self) -> u8

The raw wire byte.

Source

pub fn from_u8(v: u8) -> Option<Self>

Create a SubgroupStreamType from its raw byte, validating that it is one of the 12 defined values in Table 7.

Source

pub fn from_flags( subgroup_id_field_present: bool, subgroup_id_is_first_object: bool, extensions_present: bool, end_of_group: bool, ) -> Self

Build a subgroup stream type from its component flags.

subgroup_id_is_first_object and subgroup_id_field_present are mutually exclusive — if both are set, the resulting type has the “Subgroup ID Field Present” bit set (bit 2 wins).

Source

pub fn has_subgroup_id_field(self) -> bool

True if the header carries an explicit Subgroup ID varint.

Source

pub fn subgroup_id_is_first_object(self) -> bool

True if the subgroup ID is defined to equal the first Object ID in the stream (applies only when Self::has_subgroup_id_field is false).

Source

pub fn extensions_present(self) -> bool

True if every object in the stream carries extension headers.

Source

pub fn contains_end_of_group(self) -> bool

True if the last object on the stream (prior to FIN) is the end of its group.

Trait Implementations§

Source§

impl Clone for SubgroupStreamType

Source§

fn clone(&self) -> SubgroupStreamType

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SubgroupStreamType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for SubgroupStreamType

Source§

fn eq(&self, other: &SubgroupStreamType) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for SubgroupStreamType

Source§

impl Eq for SubgroupStreamType

Source§

impl StructuralPartialEq for SubgroupStreamType

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.