pub enum Error {
Show 34 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,
},
GitProcessError {
stdout: String,
stderr: String,
},
CrossbeamSendError {
t: String,
cause: String,
},
RelativePathError {
source: FromPathError,
},
WhichError {
source: Error,
},
ProcessExecError {
source: PopenError,
},
CannotFindParentPath {
path: PathBuf,
},
PoisonError {
cause: String,
},
GixError {
cause: String,
},
GixReferencesError {
source: Error,
},
GixReferenceInitError {
source: Error,
},
}
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
GitProcessError
CrossbeamSendError
RelativePathError
Fields
§
source: FromPathError
WhichError
ProcessExecError
Fields
§
source: PopenError
CannotFindParentPath
PoisonError
GixError
GixReferencesError
GixReferenceInitError
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()
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: XvcEcsError) -> Self
fn from(source: XvcEcsError) -> 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<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<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.
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 Freeze for Error
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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