pub struct ClusterFileSystem {
pub available_in_bytes: u32,
pub total: Option<String>,
pub available: Option<String>,
pub total_in_bytes: u32,
pub free_in_bytes: u32,
pub free: Option<String>,
}Fields§
§available_in_bytes: u32§total: Option<String>§available: Option<String>§total_in_bytes: u32§free_in_bytes: u32§free: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ClusterFileSystem
impl Clone for ClusterFileSystem
Source§fn clone(&self) -> ClusterFileSystem
fn clone(&self) -> ClusterFileSystem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClusterFileSystem
impl Debug for ClusterFileSystem
Source§impl Default for ClusterFileSystem
impl Default for ClusterFileSystem
Source§fn default() -> ClusterFileSystem
fn default() -> ClusterFileSystem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterFileSystem
impl<'de> Deserialize<'de> for ClusterFileSystem
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
Source§impl PartialEq for ClusterFileSystem
impl PartialEq for ClusterFileSystem
Source§fn eq(&self, other: &ClusterFileSystem) -> bool
fn eq(&self, other: &ClusterFileSystem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClusterFileSystem
impl Serialize for ClusterFileSystem
impl StructuralPartialEq for ClusterFileSystem
Auto Trait Implementations§
impl Freeze for ClusterFileSystem
impl RefUnwindSafe for ClusterFileSystem
impl Send for ClusterFileSystem
impl Sync for ClusterFileSystem
impl Unpin for ClusterFileSystem
impl UnsafeUnpin for ClusterFileSystem
impl UnwindSafe for ClusterFileSystem
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