Enum xvc_storage::error::Error
source · pub enum Error {
Show 17 variants
Todo(&'static str),
AnyhowError {
source: Error,
},
EcsError {
source: Error,
},
CoreError {
source: Error,
},
ConfigError {
source: Error,
},
WalkerError {
source: Error,
},
IoError {
source: Error,
},
CrossbeamSendError {
t: String,
cause: String,
},
UuidError {
source: Error,
},
NoRepositoryGuidFound,
CannotFindRemoteWithIdentifier {
identifier: StorageIdentifier,
},
ProcessExecError {
source: PopenError,
},
ProcessError {
stdout: String,
stderr: String,
},
WhichError {
source: Error,
},
CloudCredentialsError {
source: CredentialsError,
},
S3Error {
source: S3Error,
},
VarError {
source: VarError,
},
}Expand description
Error messages for xvc-storage
Variants§
Todo(&'static str)
AnyhowError
EcsError
CoreError
ConfigError
WalkerError
IoError
CrossbeamSendError
UuidError
NoRepositoryGuidFound
CannotFindRemoteWithIdentifier
Fields
§
identifier: StorageIdentifierProcessExecError
Fields
§
source: PopenErrorProcessError
WhichError
CloudCredentialsError
Fields
§
source: CredentialsErrorS3Error
VarError
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)>
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<PopenError> for Error
impl From<PopenError> for Error
source§fn from(source: PopenError) -> Self
fn from(source: PopenError) -> Self
Converts to this type from the input type.