pub struct PartialDecode<'a> {
pub hdr: CommonHeader,
pub tail: PartialDecodeTail<'a>,
pub hdr_raw: &'a [u8],
}Fields§
§hdr: CommonHeader§tail: PartialDecodeTail<'a>§hdr_raw: &'a [u8]hdr_raw MUST contain the full serialized header, inclusive of the “AnyAllAppendix” if present.
Auto Trait Implementations§
impl<'a> Freeze for PartialDecode<'a>
impl<'a> RefUnwindSafe for PartialDecode<'a>
impl<'a> Send for PartialDecode<'a>
impl<'a> Sync for PartialDecode<'a>
impl<'a> Unpin for PartialDecode<'a>
impl<'a> UnwindSafe for PartialDecode<'a>
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