pub enum MergeType {
Default,
List {
strategy: KubernetesListType,
keys: Vec<String>,
item_merge_type: Box<MergeType>,
},
Map {
strategy: KubernetesMapType,
value_merge_type: Box<MergeType>,
},
}Variants§
Trait Implementations§
impl Eq for MergeType
Source§impl Ord for MergeType
impl Ord for MergeType
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for MergeType
impl PartialOrd for MergeType
impl StructuralPartialEq for MergeType
Auto Trait Implementations§
impl Freeze for MergeType
impl RefUnwindSafe for MergeType
impl Send for MergeType
impl Sync for MergeType
impl Unpin for MergeType
impl UnsafeUnpin for MergeType
impl UnwindSafe for MergeType
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