pub trait Parse: Sized { // Required method fn from_bit_stream(bs: &mut BitStreamRead<'_>) -> Result<Self>; }