pub struct LoadReport {
pub loaded: Vec<String>,
pub skipped: Vec<String>,
pub missing: Vec<String>,
}Expand description
Report from a checkpoint load: what was loaded, skipped, or missing.
Fields§
§loaded: Vec<String>Entries matched by name and loaded successfully.
skipped: Vec<String>Checkpoint entries with no matching model parameter or buffer (ignored).
missing: Vec<String>Model parameters/buffers with no matching checkpoint entry (kept at init values).
Trait Implementations§
Source§impl Clone for LoadReport
impl Clone for LoadReport
Source§fn clone(&self) -> LoadReport
fn clone(&self) -> LoadReport
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 LoadReport
impl RefUnwindSafe for LoadReport
impl Send for LoadReport
impl Sync for LoadReport
impl Unpin for LoadReport
impl UnsafeUnpin for LoadReport
impl UnwindSafe for LoadReport
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