pub enum EncodeError {
UnexpectedEOF,
}
Expand description
This Type is returned by fn InstructionSet::encode(...) -> {...}
when the instruction could not
be encoded.
Variants§
UnexpectedEOF
Instruction couldn’t be encoded because the provided buffer was too short.
Trait Implementations§
Source§impl Debug for EncodeError
impl Debug for EncodeError
Source§impl PartialEq for EncodeError
impl PartialEq for EncodeError
Source§impl PartialOrd for EncodeError
impl PartialOrd for EncodeError
impl StructuralPartialEq for EncodeError
Auto Trait Implementations§
impl Freeze for EncodeError
impl RefUnwindSafe for EncodeError
impl Send for EncodeError
impl Sync for EncodeError
impl Unpin for EncodeError
impl UnwindSafe for EncodeError
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