Struct PrefillActorConfig
pub struct PrefillActorConfig {
pub fetch_batch_size: usize,
pub fetch_timeout: Duration,
pub fetch_retry_delay: Duration,
pub resolve_timeout: Duration,
pub order_dedup_cache_size: usize,
pub payload_dedup_cache_size: usize,
pub resolve_cache_size: usize,
}Fields§
§fetch_batch_size: usize§fetch_timeout: Duration§fetch_retry_delay: Duration§resolve_timeout: Duration§order_dedup_cache_size: usize§payload_dedup_cache_size: usize§resolve_cache_size: usizeTrait Implementations§
§impl Clone for PrefillActorConfig
impl Clone for PrefillActorConfig
§fn clone(&self) -> PrefillActorConfig
fn clone(&self) -> PrefillActorConfig
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 more§impl Debug for PrefillActorConfig
impl Debug for PrefillActorConfig
Auto Trait Implementations§
impl Freeze for PrefillActorConfig
impl RefUnwindSafe for PrefillActorConfig
impl Send for PrefillActorConfig
impl Sync for PrefillActorConfig
impl Unpin for PrefillActorConfig
impl UnwindSafe for PrefillActorConfig
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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