Skip to main content

StudyError

Enum StudyError 

Source
#[non_exhaustive]
pub enum StudyError {
Show 46 variants SerializeStudyRecord { source: Error, }, WriteStudyRecord { path: PathBuf, source: Error, }, StudyRecordTimestamp { operation: &'static str, source: Format, }, SerializeStudyPlan { source: Error, }, WriteStudyPlan { path: PathBuf, source: Error, }, StudyPlanConflict { path: PathBuf, }, PhaseExecutionFailed { summary: StudySummary, source: Box<StudyError>, }, TerminalAlreadyOwned, EmptyPhase { phase: u64, }, EmptyPhaseSet, InvalidPhaseLabel { phase: u64, }, InvalidPhaseWorkloadLimit { phase: u64, }, InvalidPhaseQueueCapacity { phase: u64, }, InvalidPhaseTiming { phase: u64, setting: &'static str, }, DuplicatePhaseId { phase: u64, }, UnknownPhaseDependency { phase: u64, dependency: u64, }, PhaseDependencyCycle { phase: u64, }, UnknownSelectedPhase { phase: u64, }, UnsatisfiedPhaseDependency { phase: u64, dependency: u64, }, PhaseConfirmationEof { phase: u64, }, PhaseConfirmationInput { phase: u64, source: Error, }, MissingTaskWorkload { task: String, }, TaskWorkload { task: String, source: Box<dyn Error + Send + Sync + 'static>, }, TaskTimedOut { task: String, timeout: Duration, }, PhaseDeadlineExceeded { phase: u64, deadline_after: Duration, }, SchedulerPanicked, Cancelled, InvalidTaskId { phase: u64, }, InvalidTaskCategory { task: String, }, DuplicateTaskId { phase: u64, task: String, }, TaskNotFound { selector: String, }, TaskSelectorAmbiguous { selector: String, first: String, second: String, }, UnknownTaskMetadata { task: String, key: String, }, DecodeTaskMetadata { task: String, key: String, source: Error, }, UnknownTask { task: String, }, TaskModeMismatch { task: String, requested: &'static str, actual: &'static str, }, TaskAlreadyStarted { identity: String, }, InitialIterationBeyondTarget { identity: String, initial: u64, target: u64, }, IterationRegressed { identity: String, current: u64, attempted: u64, }, IterationBeyondTarget { identity: String, iteration: u64, target: u64, }, TargetIterationNotReached { identity: String, current: u64, target: u64, }, StartRenderer { source: Error, }, TerminalSetup { operation: &'static str, source: Error, }, RendererUnavailable, RendererPanicked, IncompleteProgress { pending: u64, running: u64, failed: u64, },
}

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.
§

SerializeStudyRecord

Fields

§source: Error
§

WriteStudyRecord

Fields

§path: PathBuf
§source: Error
§

StudyRecordTimestamp

Fields

§operation: &'static str
§source: Format
§

SerializeStudyPlan

Fields

§source: Error
§

WriteStudyPlan

Fields

§path: PathBuf
§source: Error
§

StudyPlanConflict

Fields

§path: PathBuf
§

PhaseExecutionFailed

Fields

§source: Box<StudyError>
§

TerminalAlreadyOwned

§

EmptyPhase

Fields

§phase: u64
§

EmptyPhaseSet

§

InvalidPhaseLabel

Fields

§phase: u64
§

InvalidPhaseWorkloadLimit

Fields

§phase: u64
§

InvalidPhaseQueueCapacity

Fields

§phase: u64
§

InvalidPhaseTiming

Fields

§phase: u64
§setting: &'static str
§

DuplicatePhaseId

Fields

§phase: u64
§

UnknownPhaseDependency

Fields

§phase: u64
§dependency: u64
§

PhaseDependencyCycle

Fields

§phase: u64
§

UnknownSelectedPhase

Fields

§phase: u64
§

UnsatisfiedPhaseDependency

Fields

§phase: u64
§dependency: u64
§

PhaseConfirmationEof

Fields

§phase: u64
§

PhaseConfirmationInput

Fields

§phase: u64
§source: Error
§

MissingTaskWorkload

Fields

§task: String
§

TaskWorkload

Fields

§task: String
§source: Box<dyn Error + Send + Sync + 'static>
§

TaskTimedOut

Fields

§task: String
§timeout: Duration
§

PhaseDeadlineExceeded

Fields

§phase: u64
§deadline_after: Duration
§

SchedulerPanicked

§

Cancelled

§

InvalidTaskId

Fields

§phase: u64
§

InvalidTaskCategory

Fields

§task: String
§

DuplicateTaskId

Fields

§phase: u64
§task: String
§

TaskNotFound

Fields

§selector: String
§

TaskSelectorAmbiguous

Fields

§selector: String
§first: String
§second: String
§

UnknownTaskMetadata

Fields

§task: String
§

DecodeTaskMetadata

Fields

§task: String
§source: Error
§

UnknownTask

Fields

§task: String
§

TaskModeMismatch

Fields

§task: String
§requested: &'static str
§actual: &'static str
§

TaskAlreadyStarted

Fields

§identity: String
§

InitialIterationBeyondTarget

Fields

§identity: String
§initial: u64
§target: u64
§

IterationRegressed

Fields

§identity: String
§current: u64
§attempted: u64
§

IterationBeyondTarget

Fields

§identity: String
§iteration: u64
§target: u64
§

TargetIterationNotReached

Fields

§identity: String
§current: u64
§target: u64
§

StartRenderer

Fields

§source: Error
§

TerminalSetup

Fields

§operation: &'static str
§source: Error
§

RendererUnavailable

§

RendererPanicked

§

IncompleteProgress

Fields

§pending: u64
§running: u64
§failed: u64

Implementations§

Trait Implementations§

Source§

impl Debug for StudyError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for StudyError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for StudyError

Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToLine for T
where T: Display,

Source§

fn to_line(&self) -> Line<'_>

Converts the value to a Line.
Source§

impl<T> ToSpan for T
where T: Display,

Source§

fn to_span(&self) -> Span<'_>

Converts the value to a Span.
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> ToText for T
where T: Display,

Source§

fn to_text(&self) -> Text<'_>

Converts the value to a Text.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.