Enum scale_value::stringify::ParseCharError  
source · pub enum ParseCharError {
    ExpectedValidCharacter,
    ExpectedValidEscapeCode,
    ExpectedClosingQuoteToMatch(usize),
}Variants§
Implementations§
source§impl ParseCharError
 
impl ParseCharError
sourcepub fn at(self, loc: usize) -> ParseError
 
pub fn at(self, loc: usize) -> ParseError
Error at a specific location with no specific end
sourcepub fn at_one(self, loc: usize) -> ParseError
 
pub fn at_one(self, loc: usize) -> ParseError
Error at a specific location for the next character
sourcepub fn between(self, start: usize, end: usize) -> ParseError
 
pub fn between(self, start: usize, end: usize) -> ParseError
Error between two locations.
Trait Implementations§
source§impl Clone for ParseCharError
 
impl Clone for ParseCharError
source§fn clone(&self) -> ParseCharError
 
fn clone(&self) -> ParseCharError
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 ParseCharError
 
impl Debug for ParseCharError
source§impl Display for ParseCharError
 
impl Display for ParseCharError
source§impl From<ParseCharError> for ParseErrorKind
 
impl From<ParseCharError> for ParseErrorKind
source§fn from(original: ParseCharError) -> ParseErrorKind
 
fn from(original: ParseCharError) -> ParseErrorKind
Converts to this type from the input type.
source§impl PartialEq for ParseCharError
 
impl PartialEq for ParseCharError
source§fn eq(&self, other: &ParseCharError) -> bool
 
fn eq(&self, other: &ParseCharError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for ParseCharError
impl StructuralPartialEq for ParseCharError
Auto Trait Implementations§
impl Freeze for ParseCharError
impl RefUnwindSafe for ParseCharError
impl Send for ParseCharError
impl Sync for ParseCharError
impl Unpin for ParseCharError
impl UnwindSafe for ParseCharError
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