pub enum DecodeInputChunk<'a> {
Input(&'a [u8]),
WindowSizeChange(WindowSize),
Remainder(DecodeInputRemainder),
}Variants§
Trait Implementations§
Source§impl<'a> Debug for DecodeInputChunk<'a>
impl<'a> Debug for DecodeInputChunk<'a>
Source§impl<'a> PartialEq for DecodeInputChunk<'a>
impl<'a> PartialEq for DecodeInputChunk<'a>
impl<'a> StructuralPartialEq for DecodeInputChunk<'a>
Auto Trait Implementations§
impl<'a> Freeze for DecodeInputChunk<'a>
impl<'a> RefUnwindSafe for DecodeInputChunk<'a>
impl<'a> Send for DecodeInputChunk<'a>
impl<'a> Sync for DecodeInputChunk<'a>
impl<'a> Unpin for DecodeInputChunk<'a>
impl<'a> UnwindSafe for DecodeInputChunk<'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