pub struct ParseError {
pub kind: ParseErrorKind,
pub index: usize,
}
Expand description
Represents an error parsing a format string.
Fields§
§kind: ParseErrorKind
Kind of error encountered
index: usize
Offset of format string at which the error was encountered
Trait Implementations§
Source§impl Debug for ParseError
impl Debug for ParseError
Auto Trait Implementations§
impl Freeze for ParseError
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
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