pub enum Error {
Show 24 variants
Todo(&'static str),
AnyhowError {
source: Error,
},
CannotFindFileInCache {
xvc_path: String,
cache_path: String,
},
FileNotFound {
path: PathBuf,
},
InternalError {
message: String,
},
WalkerError {
source: XvcWalkerError,
},
EcsError {
source: XvcEcsError,
},
StorageError {
source: Error,
},
TargetIgnored {
path: String,
},
RequiresXvcRepository,
XvcCoreError {
source: Error,
},
XvcConfigError {
source: XvcConfigError,
},
IoError {
source: Error,
},
StrumError {
source: ParseError,
},
CrossbeamSendError {
t: String,
cause: String,
},
StripPrefixError {
source: StripPrefixError,
},
RelativeStripPrefixError {
e: StripPrefixError,
},
SystemTimeError {
source: SystemTimeError,
},
ContentDigestNotSupported {
path: PathBuf,
},
LockPoisonError {
t: String,
cause: String,
},
MultipleFilesToShare,
NoFilesToShare,
DurationError {
source: DurationError,
},
SourcesHaveChanged {
message: String,
files: String,
},
}
Expand description
Error messages for xvc-file
Variants§
Todo(&'static str)
AnyhowError
CannotFindFileInCache
FileNotFound
InternalError
WalkerError
Fields
§
source: XvcWalkerError
EcsError
Fields
§
source: XvcEcsError
StorageError
TargetIgnored
RequiresXvcRepository
XvcCoreError
XvcConfigError
Fields
§
source: XvcConfigError
IoError
StrumError
Fields
§
source: ParseError
CrossbeamSendError
StripPrefixError
Fields
§
source: StripPrefixError
RelativeStripPrefixError
Fields
SystemTimeError
Fields
§
source: SystemTimeError
ContentDigestNotSupported
LockPoisonError
DurationError
Fields
§
source: DurationError
SourcesHaveChanged
Implementations§
Source§impl Error
impl Error
Sourcepub fn debug(self) -> Self
pub fn debug(self) -> Self
Write error message to stderr using log::debug and return the error
Sourcepub fn trace(self) -> Self
pub fn trace(self) -> Self
Write error message to stderr using log::trace and return the error
Sourcepub fn error(self) -> Self
pub fn error(self) -> Self
Write error message to stderr using log::error and return the error
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 From<Error> for Error
impl From<Error> for Error
Source§fn from(source: DurationError) -> Self
fn from(source: DurationError) -> Self
Converts to this type from the input type.
Source§impl From<ParseError> for Error
impl From<ParseError> for Error
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Source§impl<T> From<PoisonError<T>> for Errorwhere
T: Debug,
impl<T> From<PoisonError<T>> for Errorwhere
T: Debug,
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.
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.
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