pub struct PrunedRun {
pub run_id: String,
pub project_label: String,
pub timestamp_utc: DateTime<Utc>,
pub output_dir: Option<PathBuf>,
pub bytes: u64,
}Expand description
One run selected for removal, with the disk it will reclaim.
Fields§
§run_id: String§project_label: String§timestamp_utc: DateTime<Utc>§output_dir: Option<PathBuf>§bytes: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for PrunedRun
impl RefUnwindSafe for PrunedRun
impl Send for PrunedRun
impl Sync for PrunedRun
impl Unpin for PrunedRun
impl UnsafeUnpin for PrunedRun
impl UnwindSafe for PrunedRun
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