#[non_exhaustive]pub enum OverrideReconstruction {
PreserveObservedState,
InferImageOverrides,
}Expand description
Caller-selected treatment of effective values that may originate from image defaults.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PreserveObservedState
Preserve every supported effective value as an explicit neutral-model value.
InferImageOverrides
Compare effective container values with linked image defaults and retain inferred overrides.
Trait Implementations§
Source§impl Clone for OverrideReconstruction
impl Clone for OverrideReconstruction
Source§fn clone(&self) -> OverrideReconstruction
fn clone(&self) -> OverrideReconstruction
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 moreimpl Copy for OverrideReconstruction
Source§impl Debug for OverrideReconstruction
impl Debug for OverrideReconstruction
impl Eq for OverrideReconstruction
Source§impl PartialEq for OverrideReconstruction
impl PartialEq for OverrideReconstruction
impl StructuralPartialEq for OverrideReconstruction
Auto Trait Implementations§
impl Freeze for OverrideReconstruction
impl RefUnwindSafe for OverrideReconstruction
impl Send for OverrideReconstruction
impl Sync for OverrideReconstruction
impl Unpin for OverrideReconstruction
impl UnsafeUnpin for OverrideReconstruction
impl UnwindSafe for OverrideReconstruction
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