pub struct ReplayConfig {
pub strict_validation: bool,
pub max_batch_size: usize,
pub operation_timeout_ms: u64,
pub create_backup: bool,
pub progress_interval: usize,
}Expand description
Configuration for V2 transaction replay operations
Fields§
§strict_validation: boolWhether to perform strict validation during replay
max_batch_size: usizeMaximum batch size for transaction operations
operation_timeout_ms: u64Timeout for individual operations
create_backup: boolWhether to create backups before modifications
progress_interval: usizeProgress reporting interval (operations)
Trait Implementations§
Source§impl Clone for ReplayConfig
impl Clone for ReplayConfig
Source§fn clone(&self) -> ReplayConfig
fn clone(&self) -> ReplayConfig
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 ReplayConfig
impl Debug for ReplayConfig
Auto Trait Implementations§
impl Freeze for ReplayConfig
impl RefUnwindSafe for ReplayConfig
impl Send for ReplayConfig
impl Sync for ReplayConfig
impl Unpin for ReplayConfig
impl UnwindSafe for ReplayConfig
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