pub struct SymbolicPolicy {
pub chart_default_strings: BTreeMap<String, String>,
pub kubernetes_version: Option<String>,
pub static_root_strings: BTreeMap<Vec<String>, String>,
}Expand description
Immutable non-values inputs supplied by the Helm render environment.
These inputs may decide control flow, but never become .Values schema
evidence themselves. Static root strings use path segments rather than a
dotted spelling so literal map keys containing dots remain unambiguous.
Fields§
§chart_default_strings: BTreeMap<String, String>Chart-authored string defaults executed through tpl.
kubernetes_version: Option<String>Normalized Kubernetes version used by .Capabilities.KubeVersion.
static_root_strings: BTreeMap<Vec<String>, String>Exact scalar strings beneath immutable roots such as .Chart.
Trait Implementations§
Source§impl Clone for SymbolicPolicy
impl Clone for SymbolicPolicy
Source§fn clone(&self) -> SymbolicPolicy
fn clone(&self) -> SymbolicPolicy
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 SymbolicPolicy
impl Debug for SymbolicPolicy
Source§impl Default for SymbolicPolicy
impl Default for SymbolicPolicy
Source§fn default() -> SymbolicPolicy
fn default() -> SymbolicPolicy
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SymbolicPolicy
impl RefUnwindSafe for SymbolicPolicy
impl Send for SymbolicPolicy
impl Sync for SymbolicPolicy
impl Unpin for SymbolicPolicy
impl UnsafeUnpin for SymbolicPolicy
impl UnwindSafe for SymbolicPolicy
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