pub struct MergeOptions {
pub strict: bool,
pub shallow: bool,
}Expand description
Knobs on the merge itself. Passed by reference rather than encoded as cargo
features: features are additive and unify across a dependency graph, so a
strict feature would silently change behaviour for one consumer the moment
a second consumer enabled it.
Fields§
§strict: boolError when a layer changes the kind of an existing key.
shallow: boolReplace top-level keys wholesale instead of recursing into them — jq’s
a + b rather than a * b.
Implementations§
Source§impl MergeOptions
impl MergeOptions
Trait Implementations§
Source§impl Clone for MergeOptions
impl Clone for MergeOptions
Source§impl Debug for MergeOptions
impl Debug for MergeOptions
Source§impl Default for MergeOptions
impl Default for MergeOptions
impl Eq for MergeOptions
Source§impl PartialEq for MergeOptions
impl PartialEq for MergeOptions
impl StructuralPartialEq for MergeOptions
Auto Trait Implementations§
impl Freeze for MergeOptions
impl RefUnwindSafe for MergeOptions
impl Send for MergeOptions
impl Sync for MergeOptions
impl Unpin for MergeOptions
impl UnsafeUnpin for MergeOptions
impl UnwindSafe for MergeOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.