pub struct InstallArg {
pub name: String,
pub chart: String,
pub version: Option<String>,
pub namespace: Option<String>,
pub opts: Vec<(String, String)>,
pub values: Vec<PathBuf>,
pub develop: bool,
}Expand description
Installer Argument
Fields§
§name: String§chart: String§version: Option<String>§namespace: Option<String>§opts: Vec<(String, String)>§values: Vec<PathBuf>§develop: boolImplementations§
Trait Implementations§
Source§impl Debug for InstallArg
impl Debug for InstallArg
Source§impl From<InstallArg> for Command
impl From<InstallArg> for Command
Source§fn from(arg: InstallArg) -> Self
fn from(arg: InstallArg) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstallArg
impl RefUnwindSafe for InstallArg
impl Send for InstallArg
impl Sync for InstallArg
impl Unpin for InstallArg
impl UnwindSafe for InstallArg
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