pub struct StorageConfig {
pub enabled: bool,
pub max_storage_size: u64,
pub enable_erasure_coding: bool,
pub erasure_params: (usize, usize),
pub enable_passive_replication: bool,
pub cache_size: u64,
pub cache_policy: CachePolicy,
}Expand description
Storage configuration
Fields§
§enabled: boolEnable distributed storage
max_storage_size: u64Maximum storage size in bytes
enable_erasure_coding: boolEnable erasure coding
erasure_params: (usize, usize)Erasure coding parameters (data shards, parity shards)
enable_passive_replication: boolEnable passive replication (caching)
cache_size: u64Cache size in bytes
cache_policy: CachePolicyCache eviction policy
Trait Implementations§
Source§impl Clone for StorageConfig
impl Clone for StorageConfig
Source§fn clone(&self) -> StorageConfig
fn clone(&self) -> StorageConfig
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 StorageConfig
impl Debug for StorageConfig
Source§impl Default for StorageConfig
impl Default for StorageConfig
Source§impl<'de> Deserialize<'de> for StorageConfig
impl<'de> Deserialize<'de> for StorageConfig
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 StorageConfig
impl RefUnwindSafe for StorageConfig
impl Send for StorageConfig
impl Sync for StorageConfig
impl Unpin for StorageConfig
impl UnsafeUnpin for StorageConfig
impl UnwindSafe for StorageConfig
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