Enum prompt_rust::PromptError
source · pub enum PromptError<T: FromStr>where
T::Err: Debug + Display,{
Io(Error),
ParseError(<T as FromStr>::Err),
}
Expand description
Custom error type for prompt function.
Variants§
Trait Implementations§
source§impl<T: FromStr + Debug> Error for PromptError<T>where
T::Err: Debug + Display,
impl<T: FromStr + Debug> Error for PromptError<T>where T::Err: Debug + Display,
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<T> !RefUnwindSafe for PromptError<T>
impl<T> Send for PromptError<T>where <T as FromStr>::Err: Send,
impl<T> Sync for PromptError<T>where <T as FromStr>::Err: Sync,
impl<T> Unpin for PromptError<T>where <T as FromStr>::Err: Unpin,
impl<T> !UnwindSafe for PromptError<T>
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