pub enum DecodeResult<'a> {
Complete(Vec<u8>),
InProgress(Decoder<'a>),
}
Variants§
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DecodeResult<'a>
impl<'a> RefUnwindSafe for DecodeResult<'a>
impl<'a> Send for DecodeResult<'a>
impl<'a> Sync for DecodeResult<'a>
impl<'a> Unpin for DecodeResult<'a>
impl<'a> UnwindSafe for DecodeResult<'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