pub enum Error {
Show 29 variants
Todo(&'static str),
GeneralError {
msg: String,
},
AnyhowError {
source: Error,
},
EcsError {
source: Error,
},
WalkerError {
source: Error,
},
ConfigError {
source: Error,
},
FSWalkerError {
error: String,
},
CannotFindXvcRoot {
path: PathBuf,
},
CannotNestXvcRepositories {
path: PathBuf,
},
RegexError {
source: Error,
},
SystemTimeError {
source: SystemTimeError,
},
MsgPackDecodeError {
source: Error,
},
MsgPackEncodeError {
source: Error,
},
JsonError {
source: Error,
},
TomlSerializationError {
source: Error,
},
TomlDeserializationError {
source: Error,
},
YamlError {
source: Error,
},
YamlNullValueForKey {
key: String,
},
IoError {
source: Error,
},
UnicodeError {
cause: OsString,
},
GlobError {
source: GlobError,
},
GlobPatternError {
source: PatternError,
},
StringPrefixError {
source: StripPrefixError,
},
ReqwestError {
source: Error,
},
CrossbeamSendError {
t: String,
cause: String,
},
RelativePathError {
source: FromPathError,
},
GlobSetError {
source: Error,
},
CannotFindParentPath {
path: PathBuf,
},
PoisonError {
cause: String,
},
}
Variants§
Todo(&'static str)
GeneralError
AnyhowError
EcsError
WalkerError
ConfigError
FSWalkerError
CannotFindXvcRoot
CannotNestXvcRepositories
RegexError
SystemTimeError
Fields
§
source: SystemTimeError
MsgPackDecodeError
MsgPackEncodeError
JsonError
TomlSerializationError
TomlDeserializationError
YamlError
YamlNullValueForKey
IoError
UnicodeError
GlobError
GlobPatternError
Fields
§
source: PatternError
StringPrefixError
Fields
§
source: StripPrefixError
ReqwestError
CrossbeamSendError
RelativePathError
Fields
§
source: FromPathError
GlobSetError
Fields
§
source: Error
CannotFindParentPath
PoisonError
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<T: Debug> From<&PoisonError<T>> for Error
impl<T: Debug> From<&PoisonError<T>> for Error
source§fn from(e: &PoisonError<T>) -> Self
fn from(e: &PoisonError<T>) -> Self
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(source: XvcWalkerError) -> Self
fn from(source: XvcWalkerError) -> Self
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(source: XvcConfigError) -> Self
fn from(source: XvcConfigError) -> Self
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(source: XvcEcsError) -> Self
fn from(source: XvcEcsError) -> Self
Converts to this type from the input type.
source§impl From<FromPathError> for Error
impl From<FromPathError> for Error
source§fn from(source: FromPathError) -> Self
fn from(source: FromPathError) -> Self
Converts to this type from the input type.
source§impl From<PatternError> for Error
impl From<PatternError> for Error
source§fn from(source: PatternError) -> Self
fn from(source: PatternError) -> Self
Converts to this type from the input type.
source§impl<T: Debug> From<PoisonError<T>> for Error
impl<T: Debug> From<PoisonError<T>> for Error
source§fn from(e: PoisonError<T>) -> Self
fn from(e: PoisonError<T>) -> Self
Converts to this type from the input type.
source§impl From<StripPrefixError> for Error
impl From<StripPrefixError> for Error
source§fn from(source: StripPrefixError) -> Self
fn from(source: StripPrefixError) -> Self
Converts to this type from the input type.
source§impl From<SystemTimeError> for Error
impl From<SystemTimeError> for Error
source§fn from(source: SystemTimeError) -> Self
fn from(source: SystemTimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe 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