pub struct OpsLifecycleConfig {
pub max_completed: usize,
pub max_concurrent: Option<usize>,
}Expand description
Configuration for RuntimeOpsLifecycleRegistry.
Fields§
§max_completed: usizeMaximum number of completed operations to retain (default: 256).
max_concurrent: Option<usize>Maximum concurrent non-terminal operations (None = unlimited).
Trait Implementations§
Source§impl Clone for OpsLifecycleConfig
impl Clone for OpsLifecycleConfig
Source§fn clone(&self) -> OpsLifecycleConfig
fn clone(&self) -> OpsLifecycleConfig
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 OpsLifecycleConfig
impl Debug for OpsLifecycleConfig
Auto Trait Implementations§
impl Freeze for OpsLifecycleConfig
impl RefUnwindSafe for OpsLifecycleConfig
impl Send for OpsLifecycleConfig
impl Sync for OpsLifecycleConfig
impl Unpin for OpsLifecycleConfig
impl UnsafeUnpin for OpsLifecycleConfig
impl UnwindSafe for OpsLifecycleConfig
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