pub struct GenerateOptions {
pub chart_dir: VfsPath,
pub include_tests: bool,
pub include_subchart_values: bool,
pub values_files: Vec<PathBuf>,
pub infer_required: bool,
pub provider: ProviderOptions,
}Expand description
Inputs and analysis policy for generating one chart schema.
Fields§
§chart_dir: VfsPathVirtual-filesystem directory containing Chart.yaml.
include_tests: boolWhether templates under the chart’s test directories are analyzed.
include_subchart_values: boolWhether dependency values are exposed beneath their subchart keys.
values_files: Vec<PathBuf>Additional values files applied after the chart defaults.
infer_required: boolWhether the optional required-property heuristic runs.
provider: ProviderOptionsKubernetes and CRD schema-provider policy.
Trait Implementations§
Source§impl Clone for GenerateOptions
impl Clone for GenerateOptions
Source§fn clone(&self) -> GenerateOptions
fn clone(&self) -> GenerateOptions
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for GenerateOptions
impl !UnwindSafe for GenerateOptions
impl Freeze for GenerateOptions
impl Send for GenerateOptions
impl Sync for GenerateOptions
impl Unpin for GenerateOptions
impl UnsafeUnpin for GenerateOptions
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