Enum nix_cache_watcher::nix::StoreError
source · [−]#[non_exhaustive]
pub enum StoreError {
InitialEnumeration {
source: Error,
configuration: NixConfiguration,
},
Enumeration {
source: Error,
configuration: NixConfiguration,
},
StripPrefix {
source: StripPrefixError,
},
Regex {
source: Error,
},
PathParsing,
CacheError {
e: Error,
},
DifferentPrefixes,
}Expand description
Error interacting with the Nix store
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InitialEnumeration
Failure initially enumerating the nix store
Enumeration
Mid-enumeration failure
StripPrefix
Fields
source: StripPrefixErrorUnderlying error
Error stripping prefix, this is indicative of a configuration error
Regex
Fields
source: ErrorUnderlying error
Error building a regex, this really shouldn’t happen
PathParsing
Error parsing a nix store path
CacheError
Error checking the cache
DifferentPrefixes
Tried to compare stores with different prefixes
Trait Implementations
sourceimpl Debug for StoreError
impl Debug for StoreError
sourceimpl Display for StoreError
impl Display for StoreError
sourceimpl Error for StoreErrorwhere
Self: Debug + Display,
impl Error for StoreErrorwhere
Self: Debug + Display,
sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourcefn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
replaced by Error::source, which can support downcasting
sourceimpl ErrorCompat for StoreError
impl ErrorCompat for StoreError
sourcefn iter_chain(&self) -> ChainCompat<'_>where
Self: AsErrorSource,
fn iter_chain(&self) -> ChainCompat<'_>where
Self: AsErrorSource,
Returns an iterator for traversing the chain of errors,
starting with the current error
and continuing with recursive calls to Error::source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for StoreError
impl Send for StoreError
impl Sync for StoreError
impl Unpin for StoreError
impl !UnwindSafe for StoreError
Blanket Implementations
sourceimpl<T> AsErrorSource for Twhere
T: 'static + Error,
impl<T> AsErrorSource for Twhere
T: 'static + Error,
sourcefn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method receivers. Read more
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more