pub enum CachePath {
DefaultDownstreamStore,
Path(PathBuf),
}
Expand description
A regular cache directory or a marker for the “default downstream store”.
Variants§
DefaultDownstreamStore
A placeholder for the directory of the “default downstream store”. This is used
for empty cache items in the _NT_SYMBOL_PATH
, e.g. if you have a srv**URL
with
two asterisks right after each other.
Path(PathBuf)
The path to a directory where this cache is located.
Implementations§
Trait Implementations§
impl Eq for CachePath
impl StructuralPartialEq for CachePath
Auto Trait Implementations§
impl Freeze for CachePath
impl RefUnwindSafe for CachePath
impl Send for CachePath
impl Sync for CachePath
impl Unpin for CachePath
impl UnwindSafe for CachePath
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