pub struct PgStoreOptions {
pub overfetch: i32,
pub crash_limit: i32,
pub retry_base_ms: i64,
pub retry_cap_ms: i64,
}Fields§
§overfetch: i32admit.sql $8 — how many partitions beyond capacity enter the candidate set.
crash_limit: i32crash quarantine crash-attributed failures before the fingerprint is quarantined.
retry_base_ms: i64Default retry backoff: base * 2^attempt (capped), applied when the caller does
not pass an explicit delay. The retry-policy port (payload codecs) lives caller-side.
retry_cap_ms: i64Trait Implementations§
Source§impl Clone for PgStoreOptions
impl Clone for PgStoreOptions
Source§fn clone(&self) -> PgStoreOptions
fn clone(&self) -> PgStoreOptions
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 PgStoreOptions
impl Debug for PgStoreOptions
Auto Trait Implementations§
impl Freeze for PgStoreOptions
impl RefUnwindSafe for PgStoreOptions
impl Send for PgStoreOptions
impl Sync for PgStoreOptions
impl Unpin for PgStoreOptions
impl UnsafeUnpin for PgStoreOptions
impl UnwindSafe for PgStoreOptions
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