pub enum LeanCtxError {
Io(Error),
Config(String),
Parse(String),
ToolExecution(String),
Network(String),
Other(String),
}Variants§
Trait Implementations§
Source§impl Debug for LeanCtxError
impl Debug for LeanCtxError
Source§impl Display for LeanCtxError
impl Display for LeanCtxError
Source§impl Error for LeanCtxError
impl Error for LeanCtxError
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()
Source§impl From<Error> for LeanCtxError
impl From<Error> for LeanCtxError
Source§impl From<Error> for LeanCtxError
impl From<Error> for LeanCtxError
Auto Trait Implementations§
impl Freeze for LeanCtxError
impl !RefUnwindSafe for LeanCtxError
impl Send for LeanCtxError
impl Sync for LeanCtxError
impl Unpin for LeanCtxError
impl UnsafeUnpin for LeanCtxError
impl !UnwindSafe for LeanCtxError
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