pub enum EscapeError {
TrailingBackslash {
pos: usize,
},
UnknownEscape {
pos: usize,
ch: char,
},
ShortHex {
pos: usize,
},
BadHex {
pos: usize,
},
}Expand description
Errors produced by decode_bytes_escape.
pos is a 0-based byte offset into the input string.
Variants§
TrailingBackslash
The input ended with a lone backslash, e.g. "abc\\".
UnknownEscape
Backslash followed by an unknown character, e.g. "\\q".
ShortHex
\xNN escape with fewer than two hex digits available, e.g. "\\x4".
BadHex
\xNN escape with a non-hex digit, e.g. "\\xZ1".
Trait Implementations§
Source§impl Clone for EscapeError
impl Clone for EscapeError
Source§fn clone(&self) -> EscapeError
fn clone(&self) -> EscapeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EscapeError
impl Debug for EscapeError
Source§impl Display for EscapeError
impl Display for EscapeError
Source§impl Error for EscapeError
impl Error for EscapeError
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 EscapeError
impl PartialEq for EscapeError
Source§fn eq(&self, other: &EscapeError) -> bool
fn eq(&self, other: &EscapeError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EscapeError
impl StructuralPartialEq for EscapeError
Auto Trait Implementations§
impl Freeze for EscapeError
impl RefUnwindSafe for EscapeError
impl Send for EscapeError
impl Sync for EscapeError
impl Unpin for EscapeError
impl UnsafeUnpin for EscapeError
impl UnwindSafe for EscapeError
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