pub enum AppError {
Show 25 variants
MissingApiKey(String),
Config(String),
Provider(String),
Tool(String),
LedgerVersion {
expected: u32,
actual: u32,
},
EmptyLedger,
LedgerExists(PathBuf),
LedgerConflict {
run_id: String,
seq: u64,
},
NoSqliteRuns,
RunNotFound(String),
NoSqliteSessions,
SessionNotFound(String),
SessionActive {
session_id: String,
run_id: String,
},
EmptyQuestion,
RunFailed(String),
DaemonLockHeld {
path: PathBuf,
owner: String,
},
DaemonProtocol(String),
DaemonResponse(ProtocolError),
DaemonControl(String),
PathEscapesWorkspace(PathBuf),
Io(Error),
Json(Error),
Sqlite(Error),
Toml(Error),
Core(Error),
}Variants§
MissingApiKey(String)
Config(String)
Provider(String)
Tool(String)
LedgerVersion
EmptyLedger
LedgerExists(PathBuf)
LedgerConflict
NoSqliteRuns
RunNotFound(String)
NoSqliteSessions
SessionNotFound(String)
SessionActive
EmptyQuestion
RunFailed(String)
DaemonLockHeld
DaemonProtocol(String)
DaemonResponse(ProtocolError)
DaemonControl(String)
PathEscapesWorkspace(PathBuf)
Io(Error)
Json(Error)
Sqlite(Error)
Toml(Error)
Core(Error)
Trait Implementations§
Source§impl Error for AppError
impl Error for AppError
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 !RefUnwindSafe for AppError
impl !UnwindSafe for AppError
impl Freeze for AppError
impl Send for AppError
impl Sync for AppError
impl Unpin for AppError
impl UnsafeUnpin for AppError
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreimpl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more