Struct kube::api::PatchParams[][src]

pub struct PatchParams {
    pub dry_run: bool,
    pub force: bool,
    pub field_manager: Option<String>,
}

Common query parameters for patch calls

Fields

dry_run: bool

Whether to run this as a dry run

force: bool

force Apply requests. Applicable only to Patch::Apply.

field_manager: Option<String>

fieldManager is a name of the actor that is making changes. Required for Patch::Apply optional for everything else.

Implementations

impl PatchParams[src]

pub fn apply(manager: &str) -> Self[src]

Construct PatchParams for server-side apply

pub fn force(self) -> Self[src]

Force the result through on conflicts

NB: Force is a concept restricted to the server-side Patch::Apply.

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

Perform a dryRun only

Trait Implementations

impl Clone for PatchParams[src]

impl Default for PatchParams[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,