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)>
Returns 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
impl StructuralPartialEq for ByteCodeError
Auto Trait Implementations§
impl Freeze for ByteCodeError
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