pub struct VolumesPruneReport {
pub space_reclaimed: Option<u64>,
pub volumes_deleted: Option<Vec<String>>,
}
Available on crate feature
v5
only.Expand description
VolumesPruneReport contains the response for Engine API: POST “/volumes/prune”
Fields§
§space_reclaimed: Option<u64>
§volumes_deleted: Option<Vec<String>>
Trait Implementations§
Source§impl Debug for VolumesPruneReport
impl Debug for VolumesPruneReport
Source§impl Default for VolumesPruneReport
impl Default for VolumesPruneReport
Source§fn default() -> VolumesPruneReport
fn default() -> VolumesPruneReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VolumesPruneReport
impl<'de> Deserialize<'de> for VolumesPruneReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VolumesPruneReport
impl RefUnwindSafe for VolumesPruneReport
impl Send for VolumesPruneReport
impl Sync for VolumesPruneReport
impl Unpin for VolumesPruneReport
impl UnwindSafe for VolumesPruneReport
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