pub enum CvtError {
Convert(Error),
IllegalSequence {
source: Error,
offset: usize,
},
}
Expand description
A wrapper for ConvertError
that can hold an offset into the input
string.
Variants§
Trait Implementations§
Source§impl Error for CvtError
impl Error for CvtError
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()
Auto Trait Implementations§
impl Freeze for CvtError
impl RefUnwindSafe for CvtError
impl Send for CvtError
impl Sync for CvtError
impl Unpin for CvtError
impl UnwindSafe for CvtError
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