pub enum StringError {
StringParse(ParseError),
InvalidOption(String),
Other,
}
Variants§
Trait Implementations§
Source§impl Debug for StringError
impl Debug for StringError
Source§impl From<Infallible> for StringError
impl From<Infallible> for StringError
Source§fn from(cause: ParseError) -> StringError
fn from(cause: ParseError) -> StringError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StringError
impl RefUnwindSafe for StringError
impl Send for StringError
impl Sync for StringError
impl Unpin for StringError
impl UnwindSafe for StringError
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