pub type U32AsRef<'a> = Inner<'a, true, 4, 0, 0>;Expand description
Type alias for a 4-byte slice or owned data represented using the Inner
type with fixed-size configuration.
Aliased Type§
pub enum U32AsRef<'a> {}Implementations§
Trait Implementations§
Source§impl<'a> Decodable<'a> for U32AsRef<'a>
impl<'a> Decodable<'a> for U32AsRef<'a>
Source§fn get_structure(_: &[u8]) -> Result<Vec<FieldMarker>, Error>
fn get_structure(_: &[u8]) -> Result<Vec<FieldMarker>, Error>
Defines the expected structure of a type based on binary data. Read more
Source§fn from_decoded_fields(data: Vec<DecodableField<'a>>) -> Result<Self, Error>
fn from_decoded_fields(data: Vec<DecodableField<'a>>) -> Result<Self, Error>
Constructs the type from a vector of decoded fields. Read more
Source§impl GetMarker for U32AsRef<'_>
impl GetMarker for U32AsRef<'_>
Source§fn get_marker() -> FieldMarker
fn get_marker() -> FieldMarker
Defines the structure of a type for decoding purposes, supporting both primitive and
structured types. It helps getting a marker for a type.