[][src]Struct fluvio_helm::UninstallArg

pub struct UninstallArg {
    pub release: String,
    pub namespace: Option<String>,
    pub ignore_not_found: bool,
    pub dry_run: bool,
    pub timeout: Option<String>,
}

Uninstaller Argument

Fields

release: Stringnamespace: Option<String>ignore_not_found: booldry_run: booltimeout: Option<String>

Implementations

impl UninstallArg[src]

pub fn new(release: String) -> Self[src]

pub fn namespace(mut self: Self, ns: String) -> Self[src]

set namepsace

pub fn ignore_not_found(mut self: Self) -> Self[src]

set ignore not found

pub fn dry_run(mut self: Self) -> Self[src]

set dry tun

pub fn timeout(mut self: Self, timeout: String) -> Self[src]

set timeout

Trait Implementations

impl Debug for UninstallArg[src]

impl Into<Command> for UninstallArg[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.