pub struct CachedModelSummary {
pub repo_id: String,
pub file_count: usize,
pub total_size: u64,
pub has_partial: bool,
}Expand description
Summary of a single cached model (local-only, no API calls).
Fields§
§repo_id: StringThe repository identifier (e.g., "RWKV/RWKV7-Goose-World3-1.5B-HF").
file_count: usizeNumber of files in the snapshot directory.
total_size: u64Total size on disk in bytes.
has_partial: boolWhether there are incomplete .chunked.part temp files.
Trait Implementations§
Source§impl Clone for CachedModelSummary
impl Clone for CachedModelSummary
Source§fn clone(&self) -> CachedModelSummary
fn clone(&self) -> CachedModelSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 CachedModelSummary
impl RefUnwindSafe for CachedModelSummary
impl Send for CachedModelSummary
impl Sync for CachedModelSummary
impl Unpin for CachedModelSummary
impl UnsafeUnpin for CachedModelSummary
impl UnwindSafe for CachedModelSummary
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