Enum brane_cli::errors::RunError

source ·
pub enum RunError {
Show 27 variants WriteError { err: Error, }, LocalPackageIndexError { err: Error, }, LocalDataIndexError { err: Error, }, PackagesDirError { err: UtilError, }, DatasetsDirError { err: UtilError, }, ResultsDirCreateError { err: Error, }, InstanceInfoError { err: InstanceError, }, ActiveInstanceReadError { err: InstanceError, }, InstancePathError { name: String, err: InstanceError, }, RemotePackageIndexError { address: String, err: ApiError, }, RemoteDataIndexError { address: String, err: ApiError, }, RemoteDelegatesError { address: String, err: DelegatesError, }, ClientConnectError { address: String, err: Error, }, AppIdError { address: String, raw: String, err: Box<IdError>, }, SessionCreateError { address: String, err: Status, }, CompileError { what: String, errs: Vec<Error>, }, WorkflowSerializeError { err: Error, }, CommandRequestError { address: String, err: Status, }, ValueParseError { address: String, raw: String, err: Error, }, ExecDenied { err: Box<dyn Error>, }, ExecError { err: Box<dyn Error>, }, UnknownDataset { name: String, }, UnavailableDataset { name: String, locs: Vec<String>, }, DataDownloadError { err: DataError, }, StdinReadError { err: Error, }, FileReadError { path: PathBuf, err: Error, }, LoginFileError { err: UtilError, },
}
Expand description

Collects errors during the run subcommand.

Variants§

§

WriteError

Failed to write to the given formatter.

Fields

§err: Error
§

LocalPackageIndexError

Failed to create the local package index.

Fields

§err: Error
§

LocalDataIndexError

Failed to create the local data index.

Fields

§err: Error
§

PackagesDirError

Failed to get the packages directory.

Fields

§

DatasetsDirError

Failed to get the datasets directory.

Fields

§

ResultsDirCreateError

Failed to create a temporary intermediate results directory.

Fields

§err: Error
§

InstanceInfoError

Failed to fetch the login file.

Fields

§

ActiveInstanceReadError

Failed to get the path of the active instance.

Fields

§

InstancePathError

Failed to get the active instance.

Fields

§name: String
§

RemotePackageIndexError

Failed to create the remote package index.

Fields

§address: String
§

RemoteDataIndexError

Failed to create the remote data index.

Fields

§address: String
§

RemoteDelegatesError

Failed to pull the delegate map from the remote delegate index(ish - brane-api)

Fields

§address: String
§

ClientConnectError

Could not connect to the given address

Fields

§address: String
§err: Error
§

AppIdError

Failed to parse the AppId send by the remote driver.

Note: err is boxed to avoid this error enum growing too large.

Fields

§address: String
§

SessionCreateError

Could not create a new session on the given address

Fields

§address: String
§

CompileError

An error occurred while compile the given snippet. It will already have been printed to stdout.

Fields

§what: String
§errs: Vec<Error>
§

WorkflowSerializeError

Failed to serialize the compiled workflow.

Fields

§err: Error
§

CommandRequestError

Requesting a command failed

Fields

§address: String
§

ValueParseError

Failed to parse the value returned by the remote driver.

Fields

§address: String
§err: Error
§

ExecDenied

The workflow was denied by some checker.

Fields

§err: Box<dyn Error>
§

ExecError

Failed to run the workflow

Fields

§err: Box<dyn Error>
§

UnknownDataset

The returned dataset was unknown.

Fields

§name: String
§

UnavailableDataset

The returend dataset was known but not available locally.

Fields

§name: String
§locs: Vec<String>
§

DataDownloadError

Failed to download remote dataset.

Fields

§

StdinReadError

Failed to read the source from stdin

Fields

§err: Error
§

FileReadError

Failed to read the source from a given file

Fields

§path: PathBuf
§err: Error
§

LoginFileError

Failed to load the login file.

Fields

Trait Implementations§

source§

impl Debug for RunError

source§

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

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

impl Display for RunError

source§

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

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

impl Error for RunError

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

impl From<Error> for RunError

source§

fn from(value: Error) -> Self

Converts to this type from the input type.

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<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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> ErrorTrace for T
where T: Error,

source§

fn trace(&self) -> ErrorTraceFormatter<'_>

Returns a formatter that writes the error to the given formatter, with any sources it has. Read more
source§

impl<T> ErrorTrace for T
where T: Error + ?Sized,

source§

fn trace(&self) -> ErrorTraceFormatter<'_, '_>

Returns a formatter for showing this Error and all its sources. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

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

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T