pub struct CacheFileInfo {
pub path: String,
pub size_bytes: usize,
pub last_accessed: SystemTime,
pub model_name: String,
}Expand description
Information about one cached model file on disk.
Fields§
§path: StringAbsolute path to the .oxcache file.
size_bytes: usizeSize on disk in bytes.
last_accessed: SystemTimeLast time this cache was accessed / loaded.
model_name: StringHuman-readable model name.
Trait Implementations§
Source§impl Clone for CacheFileInfo
impl Clone for CacheFileInfo
Source§fn clone(&self) -> CacheFileInfo
fn clone(&self) -> CacheFileInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CacheFileInfo
impl RefUnwindSafe for CacheFileInfo
impl Send for CacheFileInfo
impl Sync for CacheFileInfo
impl Unpin for CacheFileInfo
impl UnsafeUnpin for CacheFileInfo
impl UnwindSafe for CacheFileInfo
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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