#[repr(C)]pub enum DecoderResult {
Ok(Vec<u8>),
Err(InputError),
}
Expand description
Result that is returned from decoding function
Variants§
Trait Implementations§
Source§impl Clone for DecoderResult
impl Clone for DecoderResult
Source§fn clone(&self) -> DecoderResult
fn clone(&self) -> DecoderResult
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DecoderResult
impl Debug for DecoderResult
Source§impl PartialEq for DecoderResult
impl PartialEq for DecoderResult
impl Eq for DecoderResult
impl StructuralPartialEq for DecoderResult
Auto Trait Implementations§
impl Freeze for DecoderResult
impl RefUnwindSafe for DecoderResult
impl Send for DecoderResult
impl Sync for DecoderResult
impl Unpin for DecoderResult
impl UnwindSafe for DecoderResult
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