pub struct DecodedItem {
pub item: Item,
pub bytes: TinyVec<[u8; 8]>,
}Expand description
A successfully decoded descriptor item.
Fields§
§item: ItemThe decoded descriptor item.
bytes: TinyVec<[u8; 8]>The bytes this item was decoded from.
Auto Trait Implementations§
impl Freeze for DecodedItem
impl RefUnwindSafe for DecodedItem
impl Send for DecodedItem
impl Sync for DecodedItem
impl Unpin for DecodedItem
impl UnsafeUnpin for DecodedItem
impl UnwindSafe for DecodedItem
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