pub struct EffectiveCoreConfig {
pub mode: CaptureMode,
pub capture_limits: CaptureLimits,
pub strict_lifecycle: bool,
}Expand description
Stable, resolved core configuration used by one capture run.
Fields§
§mode: CaptureModeSelected capture mode.
capture_limits: CaptureLimitsEffective resolved retention limits used for this run.
strict_lifecycle: boolEffective strict lifecycle behavior for this run.
Trait Implementations§
Source§impl Clone for EffectiveCoreConfig
impl Clone for EffectiveCoreConfig
Source§fn clone(&self) -> EffectiveCoreConfig
fn clone(&self) -> EffectiveCoreConfig
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 EffectiveCoreConfig
impl Debug for EffectiveCoreConfig
Source§impl<'de> Deserialize<'de> for EffectiveCoreConfig
impl<'de> Deserialize<'de> for EffectiveCoreConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EffectiveCoreConfig
impl PartialEq for EffectiveCoreConfig
Source§fn eq(&self, other: &EffectiveCoreConfig) -> bool
fn eq(&self, other: &EffectiveCoreConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EffectiveCoreConfig
impl Serialize for EffectiveCoreConfig
impl Copy for EffectiveCoreConfig
impl Eq for EffectiveCoreConfig
impl StructuralPartialEq for EffectiveCoreConfig
Auto Trait Implementations§
impl Freeze for EffectiveCoreConfig
impl RefUnwindSafe for EffectiveCoreConfig
impl Send for EffectiveCoreConfig
impl Sync for EffectiveCoreConfig
impl Unpin for EffectiveCoreConfig
impl UnsafeUnpin for EffectiveCoreConfig
impl UnwindSafe for EffectiveCoreConfig
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