pub struct ClusterCephMetadataResponseDataMonValue {
pub addrs: 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§
§addrs: Option<String>Bind addresses and ports.
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 ClusterCephMetadataResponseDataMonValue
impl Clone for ClusterCephMetadataResponseDataMonValue
Source§fn clone(&self) -> ClusterCephMetadataResponseDataMonValue
fn clone(&self) -> ClusterCephMetadataResponseDataMonValue
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 ClusterCephMetadataResponseDataMonValue
impl Default for ClusterCephMetadataResponseDataMonValue
Source§fn default() -> ClusterCephMetadataResponseDataMonValue
fn default() -> ClusterCephMetadataResponseDataMonValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterCephMetadataResponseDataMonValue
impl<'de> Deserialize<'de> for ClusterCephMetadataResponseDataMonValue
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 ClusterCephMetadataResponseDataMonValue
impl PartialEq for ClusterCephMetadataResponseDataMonValue
Source§fn eq(&self, other: &ClusterCephMetadataResponseDataMonValue) -> bool
fn eq(&self, other: &ClusterCephMetadataResponseDataMonValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClusterCephMetadataResponseDataMonValue
Auto Trait Implementations§
impl Freeze for ClusterCephMetadataResponseDataMonValue
impl RefUnwindSafe for ClusterCephMetadataResponseDataMonValue
impl Send for ClusterCephMetadataResponseDataMonValue
impl Sync for ClusterCephMetadataResponseDataMonValue
impl Unpin for ClusterCephMetadataResponseDataMonValue
impl UnsafeUnpin for ClusterCephMetadataResponseDataMonValue
impl UnwindSafe for ClusterCephMetadataResponseDataMonValue
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