pub struct OverflowConfig {
pub min_page_bytes: u32,
pub target_page_bytes: u32,
pub max_page_bytes: u32,
pub hash_seed: u64,
}Expand description
Canonical physical-node paging configuration.
Fields§
§min_page_bytes: u32Minimum encoded bytes before a content boundary may close a page.
target_page_bytes: u32Preferred encoded page size used for capacity planning.
max_page_bytes: u32Hard encoded-byte limit for one physical proximity object.
hash_seed: u64Seed for deterministic overflow boundaries.
Trait Implementations§
Source§impl Clone for OverflowConfig
impl Clone for OverflowConfig
Source§fn clone(&self) -> OverflowConfig
fn clone(&self) -> OverflowConfig
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 OverflowConfig
impl Debug for OverflowConfig
Source§impl Default for OverflowConfig
impl Default for OverflowConfig
impl Eq for OverflowConfig
Source§impl PartialEq for OverflowConfig
impl PartialEq for OverflowConfig
impl StructuralPartialEq for OverflowConfig
Auto Trait Implementations§
impl Freeze for OverflowConfig
impl RefUnwindSafe for OverflowConfig
impl Send for OverflowConfig
impl Sync for OverflowConfig
impl Unpin for OverflowConfig
impl UnsafeUnpin for OverflowConfig
impl UnwindSafe for OverflowConfig
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> 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