pub enum QuestionError {
Grow(GrowError),
Name(NameError),
}Expand description
failed to emit question
Variants§
Trait Implementations§
Source§impl Debug for QuestionError
impl Debug for QuestionError
Source§impl Display for QuestionError
impl Display for QuestionError
Source§impl Error for QuestionError
impl Error for QuestionError
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 QuestionError
impl RefUnwindSafe for QuestionError
impl Send for QuestionError
impl Sync for QuestionError
impl Unpin for QuestionError
impl UnwindSafe for QuestionError
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