Enum pico_bytes::ByteCodeError
source · pub enum ByteCodeError {
InvalidOperation,
InvalidBinaryOperation(u8),
InvalidUnaryOperation(u8),
}
Variants§
Trait Implementations§
source§impl Clone for ByteCodeError
impl Clone for ByteCodeError
source§fn clone(&self) -> ByteCodeError
fn clone(&self) -> ByteCodeError
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 ByteCodeError
impl Debug for ByteCodeError
source§impl Display for ByteCodeError
impl Display for ByteCodeError
source§impl Error for ByteCodeError
impl Error for ByteCodeError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq for ByteCodeError
impl PartialEq for ByteCodeError
source§fn eq(&self, other: &ByteCodeError) -> bool
fn eq(&self, other: &ByteCodeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ByteCodeError
Auto Trait Implementations§
impl RefUnwindSafe for ByteCodeError
impl Send for ByteCodeError
impl Sync for ByteCodeError
impl Unpin for ByteCodeError
impl UnwindSafe for ByteCodeError
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