pub struct ClusterCephMetadataResponseDataMgrValue {
pub addr: Option<String>,
pub ceph_release: String,
pub ceph_version: String,
pub ceph_version_short: String,
pub hostname: String,
pub mem_swap_kb: i64,
pub mem_total_kb: i64,
pub name: Option<String>,
}Fields§
§addr: Option<String>Bind address.
ceph_release: StringCeph release codename currently used.
ceph_version: StringVersion info currently used by the service.
ceph_version_short: StringShort version (numerical) info currently used by the service.
hostname: StringHostname on which the service is running.
mem_swap_kb: i64Memory of the service currently in swap.
mem_total_kb: i64Memory consumption of the service.
name: Option<String>Name of the service instance.
Implementations§
Trait Implementations§
Source§impl Clone for ClusterCephMetadataResponseDataMgrValue
impl Clone for ClusterCephMetadataResponseDataMgrValue
Source§fn clone(&self) -> ClusterCephMetadataResponseDataMgrValue
fn clone(&self) -> ClusterCephMetadataResponseDataMgrValue
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 Default for ClusterCephMetadataResponseDataMgrValue
impl Default for ClusterCephMetadataResponseDataMgrValue
Source§fn default() -> ClusterCephMetadataResponseDataMgrValue
fn default() -> ClusterCephMetadataResponseDataMgrValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterCephMetadataResponseDataMgrValue
impl<'de> Deserialize<'de> for ClusterCephMetadataResponseDataMgrValue
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 ClusterCephMetadataResponseDataMgrValue
impl PartialEq for ClusterCephMetadataResponseDataMgrValue
Source§fn eq(&self, other: &ClusterCephMetadataResponseDataMgrValue) -> bool
fn eq(&self, other: &ClusterCephMetadataResponseDataMgrValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClusterCephMetadataResponseDataMgrValue
Auto Trait Implementations§
impl Freeze for ClusterCephMetadataResponseDataMgrValue
impl RefUnwindSafe for ClusterCephMetadataResponseDataMgrValue
impl Send for ClusterCephMetadataResponseDataMgrValue
impl Sync for ClusterCephMetadataResponseDataMgrValue
impl Unpin for ClusterCephMetadataResponseDataMgrValue
impl UnsafeUnpin for ClusterCephMetadataResponseDataMgrValue
impl UnwindSafe for ClusterCephMetadataResponseDataMgrValue
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