pub struct Cache {
pub fs: Arc<dyn FileSystem>,
/* private fields */
}
Expand description
Stores various cached info about file paths.
Fields§
§fs: Arc<dyn FileSystem>
Implementations§
Source§impl Cache
impl Cache
Sourcepub fn new(fs: Arc<dyn FileSystem>) -> Cache
pub fn new(fs: Arc<dyn FileSystem>) -> Cache
Creates an empty cache with the given file system.
Sourcepub fn get<P: AsRef<Path>>(&self, path: P) -> CachedPath
pub fn get<P: AsRef<Path>>(&self, path: P) -> CachedPath
Returns cached info for a pre-normalized path.
Sourcepub fn get_normalized<P: AsRef<Path>>(&self, path: P) -> CachedPath
pub fn get_normalized<P: AsRef<Path>>(&self, path: P) -> CachedPath
Normalizes the given path and returns its cached info.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cache
impl !RefUnwindSafe for Cache
impl Send for Cache
impl Sync for Cache
impl Unpin for Cache
impl !UnwindSafe for Cache
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> 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