pub struct SqliteEffectReplayOptions {
pub lease_timings: LeaseTimings,
}Expand description
Options for SQLite-backed runtime effect replay.
Fields§
§lease_timings: LeaseTimingsEffect-replay lease timing capability. Hosts share the same
LeaseTimings they configure on the runtime so effect leases expire
on the same failover window as session and process leases.
Trait Implementations§
Source§impl Clone for SqliteEffectReplayOptions
impl Clone for SqliteEffectReplayOptions
Source§fn clone(&self) -> SqliteEffectReplayOptions
fn clone(&self) -> SqliteEffectReplayOptions
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 SqliteEffectReplayOptions
impl Debug for SqliteEffectReplayOptions
Source§impl Default for SqliteEffectReplayOptions
impl Default for SqliteEffectReplayOptions
Source§fn default() -> SqliteEffectReplayOptions
fn default() -> SqliteEffectReplayOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SqliteEffectReplayOptions
impl RefUnwindSafe for SqliteEffectReplayOptions
impl Send for SqliteEffectReplayOptions
impl Sync for SqliteEffectReplayOptions
impl Unpin for SqliteEffectReplayOptions
impl UnsafeUnpin for SqliteEffectReplayOptions
impl UnwindSafe for SqliteEffectReplayOptions
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