pub struct BuilderPruneResult {
pub deleted_cache_ids: Vec<String>,
pub space_reclaimed: Option<u64>,
pub space_reclaimed_str: Option<String>,
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
}
Expand description
Result of builder prune operation
Fields§
§deleted_cache_ids: Vec<String>
IDs of deleted build cache entries
space_reclaimed: Option<u64>
Amount of disk space reclaimed in bytes
space_reclaimed_str: Option<String>
Human-readable space reclaimed (e.g., “2.5GB”)
stdout: String
Standard output from the command
stderr: String
Standard error from the command
exit_code: i32
Exit code
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuilderPruneResult
impl RefUnwindSafe for BuilderPruneResult
impl Send for BuilderPruneResult
impl Sync for BuilderPruneResult
impl Unpin for BuilderPruneResult
impl UnwindSafe for BuilderPruneResult
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