pub struct StorageTierOverview {
pub tiers_enabled: bool,
pub architecture: Vec<TierInfo>,
pub config: TierConfig,
pub activity: TierActivity,
}Expand description
Overview of the tiered storage system from GET /admin/storage/tiers.
Fields§
§tiers_enabled: boolWhether tiered storage is enabled.
architecture: Vec<TierInfo>Description of each tier.
config: TierConfigCurrent tier configuration.
activity: TierActivityTier movement activity.
Trait Implementations§
Source§impl Clone for StorageTierOverview
impl Clone for StorageTierOverview
Source§fn clone(&self) -> StorageTierOverview
fn clone(&self) -> StorageTierOverview
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 StorageTierOverview
impl Debug for StorageTierOverview
Source§impl<'de> Deserialize<'de> for StorageTierOverview
impl<'de> Deserialize<'de> for StorageTierOverview
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 StorageTierOverview
impl RefUnwindSafe for StorageTierOverview
impl Send for StorageTierOverview
impl Sync for StorageTierOverview
impl Unpin for StorageTierOverview
impl UnsafeUnpin for StorageTierOverview
impl UnwindSafe for StorageTierOverview
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