pub struct ValuesDefaultSource {
pub target_path: String,
pub source_path: String,
}Expand description
A chart-wide default subtree merged into an effective .Values subtree.
The target remains user-overridable; the source supplies only keys absent
from the target, matching mustMergeOverwrite SOURCE TARGET before the
result replaces a root or nested Values object.
Fields§
§target_path: StringEffective values subtree receiving defaults, with an empty path denoting .Values.
source_path: StringChart values subtree supplying defaults.
Trait Implementations§
Source§impl Clone for ValuesDefaultSource
impl Clone for ValuesDefaultSource
Source§fn clone(&self) -> ValuesDefaultSource
fn clone(&self) -> ValuesDefaultSource
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 ValuesDefaultSource
impl Debug for ValuesDefaultSource
impl Eq for ValuesDefaultSource
Source§impl Hash for ValuesDefaultSource
impl Hash for ValuesDefaultSource
Source§impl Ord for ValuesDefaultSource
impl Ord for ValuesDefaultSource
Source§fn cmp(&self, other: &ValuesDefaultSource) -> Ordering
fn cmp(&self, other: &ValuesDefaultSource) -> Ordering
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 PartialEq for ValuesDefaultSource
impl PartialEq for ValuesDefaultSource
Source§impl PartialOrd for ValuesDefaultSource
impl PartialOrd for ValuesDefaultSource
impl StructuralPartialEq for ValuesDefaultSource
Auto Trait Implementations§
impl Freeze for ValuesDefaultSource
impl RefUnwindSafe for ValuesDefaultSource
impl Send for ValuesDefaultSource
impl Sync for ValuesDefaultSource
impl Unpin for ValuesDefaultSource
impl UnsafeUnpin for ValuesDefaultSource
impl UnwindSafe for ValuesDefaultSource
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