pub struct CompositeAcceleratorConfig {
pub max_delta_records: usize,
pub max_shadow_records: usize,
pub max_delta_ratio_ppm: u32,
pub max_shadow_ratio_ppm: u32,
pub base_overfetch_multiplier: u32,
}Fields§
§max_delta_records: usize§max_shadow_records: usize§max_delta_ratio_ppm: u32§max_shadow_ratio_ppm: u32§base_overfetch_multiplier: u32Trait Implementations§
Source§impl Clone for CompositeAcceleratorConfig
impl Clone for CompositeAcceleratorConfig
Source§fn clone(&self) -> CompositeAcceleratorConfig
fn clone(&self) -> CompositeAcceleratorConfig
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 CompositeAcceleratorConfig
impl Debug for CompositeAcceleratorConfig
Source§impl Default for CompositeAcceleratorConfig
impl Default for CompositeAcceleratorConfig
impl Eq for CompositeAcceleratorConfig
impl StructuralPartialEq for CompositeAcceleratorConfig
Auto Trait Implementations§
impl Freeze for CompositeAcceleratorConfig
impl RefUnwindSafe for CompositeAcceleratorConfig
impl Send for CompositeAcceleratorConfig
impl Sync for CompositeAcceleratorConfig
impl Unpin for CompositeAcceleratorConfig
impl UnsafeUnpin for CompositeAcceleratorConfig
impl UnwindSafe for CompositeAcceleratorConfig
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