Enum baby_emulator::assembler::parser::errors::ValueParseError    
source · pub enum ValueParseError {
    InvalidValue(String),
    InvalidHex(String),
    InvalidDecimal(String),
    InvalidOctal(String),
    InvalidBinary(String),
    InvalidTagName(String),
}Expand description
Thrown when an invalid value is encountered.
Variants§
InvalidValue(String)
No discernable value detected where one is expected.
InvalidHex(String)
Invalid hex value.
InvalidDecimal(String)
Invalid decimal value.
InvalidOctal(String)
Invalid octal value.
InvalidBinary(String)
Invalid binary value.
InvalidTagName(String)
Invalid tag name.
Trait Implementations§
source§impl Debug for ValueParseError
 
impl Debug for ValueParseError
source§impl ParseError for ValueParseError
 
impl ParseError for ValueParseError
source§impl PartialEq<ValueParseError> for ValueParseError
 
impl PartialEq<ValueParseError> for ValueParseError
source§fn eq(&self, other: &ValueParseError) -> bool
 
fn eq(&self, other: &ValueParseError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ValueParseError
Auto Trait Implementations§
impl RefUnwindSafe for ValueParseError
impl Send for ValueParseError
impl Sync for ValueParseError
impl Unpin for ValueParseError
impl UnwindSafe for ValueParseError
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