pub struct ReplayLimits {
pub max_actions: u64,
pub max_input_bytes: u64,
}Expand description
Limits applied to replay runs.
Fields§
§max_actions: u64Maximum number of actions (or action-like side effects) that may be attempted.
max_input_bytes: u64Maximum number of input bytes that may be processed under replay.
Trait Implementations§
Source§impl Clone for ReplayLimits
impl Clone for ReplayLimits
Source§fn clone(&self) -> ReplayLimits
fn clone(&self) -> ReplayLimits
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 ReplayLimits
impl Debug for ReplayLimits
Source§impl Default for ReplayLimits
impl Default for ReplayLimits
Source§impl PartialEq for ReplayLimits
impl PartialEq for ReplayLimits
impl Copy for ReplayLimits
impl Eq for ReplayLimits
impl StructuralPartialEq for ReplayLimits
Auto Trait Implementations§
impl Freeze for ReplayLimits
impl RefUnwindSafe for ReplayLimits
impl Send for ReplayLimits
impl Sync for ReplayLimits
impl Unpin for ReplayLimits
impl UnwindSafe for ReplayLimits
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