pub struct ReadNamespacedBuildOptional<'a> {
pub exact: Option<bool>,
pub export: Option<bool>,
pub pretty: Option<&'a str>,
}
Expand description
Optional parameters of Build::read_namespaced_build
Fields§
§exact: Option<bool>
Should the export be exact. Exact export maintains cluster-specific fields like ‘Namespace’.
export: Option<bool>
Should this value be exported. Export strips fields that a user can not specify.
pretty: Option<&'a str>
If ‘true’, then the output is pretty printed.
Trait Implementations§
Source§impl<'a> Clone for ReadNamespacedBuildOptional<'a>
impl<'a> Clone for ReadNamespacedBuildOptional<'a>
Source§fn clone(&self) -> ReadNamespacedBuildOptional<'a>
fn clone(&self) -> ReadNamespacedBuildOptional<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for ReadNamespacedBuildOptional<'a>
impl<'a> Debug for ReadNamespacedBuildOptional<'a>
Source§impl<'a> Default for ReadNamespacedBuildOptional<'a>
impl<'a> Default for ReadNamespacedBuildOptional<'a>
Source§fn default() -> ReadNamespacedBuildOptional<'a>
fn default() -> ReadNamespacedBuildOptional<'a>
Returns the “default value” for a type. Read more
impl<'a> Copy for ReadNamespacedBuildOptional<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReadNamespacedBuildOptional<'a>
impl<'a> RefUnwindSafe for ReadNamespacedBuildOptional<'a>
impl<'a> Send for ReadNamespacedBuildOptional<'a>
impl<'a> Sync for ReadNamespacedBuildOptional<'a>
impl<'a> Unpin for ReadNamespacedBuildOptional<'a>
impl<'a> UnwindSafe for ReadNamespacedBuildOptional<'a>
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