#[non_exhaustive]pub struct Entry<'cache> {
pub file_name: Cow<'cache, OsStr>,
pub full_path: Cow<'cache, Path>,
}Expand description
Cache entry.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.file_name: Cow<'cache, OsStr>File name of the shared library.
full_path: Cow<'cache, Path>Absolute path of the shared library.
Trait Implementations§
Auto Trait Implementations§
impl<'cache> Freeze for Entry<'cache>
impl<'cache> RefUnwindSafe for Entry<'cache>
impl<'cache> Send for Entry<'cache>
impl<'cache> Sync for Entry<'cache>
impl<'cache> Unpin for Entry<'cache>
impl<'cache> UnwindSafe for Entry<'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