pub struct HydrationLimits {
pub max_in_flight_work: usize,
pub max_in_flight_per_content: usize,
}Expand description
Bounded hydration work limits.
Fields§
§max_in_flight_work: usizeMaximum number of backend work items retained by one coordinator.
max_in_flight_per_content: usizeMaximum number of backend work items retained for one content key.
Implementations§
Trait Implementations§
Source§impl Clone for HydrationLimits
impl Clone for HydrationLimits
Source§fn clone(&self) -> HydrationLimits
fn clone(&self) -> HydrationLimits
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 HydrationLimits
impl Debug for HydrationLimits
Source§impl PartialEq for HydrationLimits
impl PartialEq for HydrationLimits
impl Copy for HydrationLimits
impl Eq for HydrationLimits
impl StructuralPartialEq for HydrationLimits
Auto Trait Implementations§
impl Freeze for HydrationLimits
impl RefUnwindSafe for HydrationLimits
impl Send for HydrationLimits
impl Sync for HydrationLimits
impl Unpin for HydrationLimits
impl UnwindSafe for HydrationLimits
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