Struct k8s_openapi::ReplaceOptional
source · [−]pub struct ReplaceOptional<'a> {
pub dry_run: Option<&'a str>,
pub field_manager: Option<&'a str>,
pub field_validation: Option<&'a str>,
}
Expand description
Common parameters for all replace operations.
Fields
dry_run: Option<&'a str>
When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
field_manager: Option<&'a str>
fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
field_validation: Option<&'a str>
fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the ServerSideFieldValidation
feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the ServerSideFieldValidation
feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the ServerSideFieldValidation
feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
Trait Implementations
sourceimpl<'a> Clone for ReplaceOptional<'a>
impl<'a> Clone for ReplaceOptional<'a>
sourcefn clone(&self) -> ReplaceOptional<'a>
fn clone(&self) -> ReplaceOptional<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for ReplaceOptional<'a>
impl<'a> Debug for ReplaceOptional<'a>
sourceimpl<'a> Default for ReplaceOptional<'a>
impl<'a> Default for ReplaceOptional<'a>
sourcefn default() -> ReplaceOptional<'a>
fn default() -> ReplaceOptional<'a>
Returns the “default value” for a type. Read more
sourceimpl<'a> PartialEq<ReplaceOptional<'a>> for ReplaceOptional<'a>
impl<'a> PartialEq<ReplaceOptional<'a>> for ReplaceOptional<'a>
sourcefn eq(&self, other: &ReplaceOptional<'a>) -> bool
fn eq(&self, other: &ReplaceOptional<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl<'a> Copy for ReplaceOptional<'a>
impl<'a> StructuralPartialEq for ReplaceOptional<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for ReplaceOptional<'a>
impl<'a> Send for ReplaceOptional<'a>
impl<'a> Sync for ReplaceOptional<'a>
impl<'a> Unpin for ReplaceOptional<'a>
impl<'a> UnwindSafe for ReplaceOptional<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more