pub struct ColdTierConfig {
pub path: String,
pub max_size_tb: usize,
pub compression_level: i32,
pub archive_threshold_days: u32,
}Expand description
Cold tier configuration
Fields§
§path: StringPath to cold storage
max_size_tb: usizeMaximum size in TB
compression_level: i32Compression level
archive_threshold_days: u32Archive threshold (days since last access)
Trait Implementations§
Source§impl Clone for ColdTierConfig
impl Clone for ColdTierConfig
Source§fn clone(&self) -> ColdTierConfig
fn clone(&self) -> ColdTierConfig
Returns a duplicate 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 ColdTierConfig
impl Debug for ColdTierConfig
Source§impl Default for ColdTierConfig
impl Default for ColdTierConfig
Source§impl<'de> Deserialize<'de> for ColdTierConfig
impl<'de> Deserialize<'de> for ColdTierConfig
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 ColdTierConfig
impl RefUnwindSafe for ColdTierConfig
impl Send for ColdTierConfig
impl Sync for ColdTierConfig
impl Unpin for ColdTierConfig
impl UnsafeUnpin for ColdTierConfig
impl UnwindSafe for ColdTierConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more