pub enum StrError {
Len(LenError),
Utf8(Utf8Error),
}Expand description
String parsing error
Variants§
Trait Implementations§
impl Copy for StrError
impl Eq for StrError
Source§impl Error for StrError
Available on crate feature unstable-error only.unstable-error: feature required
impl Error for StrError
Available on crate feature
unstable-error only.unstable-error: feature required
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()
impl StructuralPartialEq for StrError
Auto Trait Implementations§
impl Freeze for StrError
impl RefUnwindSafe for StrError
impl Send for StrError
impl Sync for StrError
impl Unpin for StrError
impl UnsafeUnpin for StrError
impl UnwindSafe for StrError
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