pub struct SystemDfVolumeReport {
pub links: Option<i64>,
pub reclaimable_size: Option<i64>,
pub size: Option<i64>,
pub volume_name: Option<String>,
}
Expand description
SystemDfVolumeReport describes a volume and its size
Fields§
§links: Option<i64>
§reclaimable_size: Option<i64>
§size: Option<i64>
§volume_name: Option<String>
Trait Implementations§
Source§impl Clone for SystemDfVolumeReport
impl Clone for SystemDfVolumeReport
Source§fn clone(&self) -> SystemDfVolumeReport
fn clone(&self) -> SystemDfVolumeReport
Returns a copy 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 moreSource§impl Debug for SystemDfVolumeReport
impl Debug for SystemDfVolumeReport
Source§impl<'de> Deserialize<'de> for SystemDfVolumeReport
impl<'de> Deserialize<'de> for SystemDfVolumeReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SystemDfVolumeReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SystemDfVolumeReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SystemDfVolumeReport
impl PartialEq for SystemDfVolumeReport
Source§impl Serialize for SystemDfVolumeReport
impl Serialize for SystemDfVolumeReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SystemDfVolumeReport
Auto Trait Implementations§
impl Freeze for SystemDfVolumeReport
impl RefUnwindSafe for SystemDfVolumeReport
impl Send for SystemDfVolumeReport
impl Sync for SystemDfVolumeReport
impl Unpin for SystemDfVolumeReport
impl UnwindSafe for SystemDfVolumeReport
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