#[non_exhaustive]pub enum Error {
Config(String),
Parse {
what: String,
index: usize,
reason: String,
},
Simulation(String),
Baseline(String),
BackendUnimplemented(String),
Io(Error),
Toml(String),
Json(Error),
}Expand description
All error conditions the core can surface.
Variants map onto the documented CLI exit codes (see the cu-profiler-cli
crate) so the boundary layer can translate an Error into a stable code.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Config(String)
The configuration file was missing, malformed, or semantically invalid.
Parse
A Solana log line could not be parsed. Carries enough context to locate and explain the failure.
Fields
Simulation(String)
A simulation backend failed to execute a scenario.
Baseline(String)
A baseline could not be read, written, or compared.
BackendUnimplemented(String)
A backend exists as an interface but is not implemented in this build.
Io(Error)
An underlying I/O failure.
Toml(String)
A TOML (de)serialization failure, kept as a string so the error type
stays independent of the toml error representation.
Json(Error)
A JSON (de)serialization failure.
Implementations§
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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 Error
impl !UnwindSafe for Error
impl Freeze for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
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