pub struct ParseIdError {
pub kind: &'static str,
pub input_len: usize,
}Expand description
Error returned when parsing a hex identifier string fails.
Fields§
§kind: &'static strWhich identifier type was being parsed.
input_len: usizeLength of the input string.
Trait Implementations§
Source§impl Clone for ParseIdError
impl Clone for ParseIdError
Source§fn clone(&self) -> ParseIdError
fn clone(&self) -> ParseIdError
Returns a duplicate 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 ParseIdError
impl Debug for ParseIdError
Source§impl Display for ParseIdError
impl Display for ParseIdError
Source§impl PartialEq for ParseIdError
impl PartialEq for ParseIdError
impl Eq for ParseIdError
impl StructuralPartialEq for ParseIdError
Auto Trait Implementations§
impl Freeze for ParseIdError
impl RefUnwindSafe for ParseIdError
impl Send for ParseIdError
impl Sync for ParseIdError
impl Unpin for ParseIdError
impl UnwindSafe for ParseIdError
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