pub struct DecodeErr {
pub position: usize,
pub kind: DecodeErrKind,
}
Expand description
Error from decoding a entity-encoded string.
Fields§
§position: usize
Number of characters read from the input before encountering an error
kind: DecodeErrKind
Type of error
Trait Implementations§
impl Eq for DecodeErr
impl StructuralPartialEq for DecodeErr
Auto Trait Implementations§
impl Freeze for DecodeErr
impl !RefUnwindSafe for DecodeErr
impl Send for DecodeErr
impl Sync for DecodeErr
impl Unpin for DecodeErr
impl !UnwindSafe for DecodeErr
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