#[non_exhaustive]pub struct K8sBetaAPIConfig {
pub enabled_apis: Vec<String>,
/* private fields */
}Expand description
K8sBetaAPIConfig , configuration for beta APIs
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.enabled_apis: Vec<String>Enabled k8s beta APIs.
Implementations§
Source§impl K8sBetaAPIConfig
impl K8sBetaAPIConfig
pub fn new() -> Self
Sourcepub fn set_enabled_apis<T, V>(self, v: T) -> Self
pub fn set_enabled_apis<T, V>(self, v: T) -> Self
Sets the value of enabled_apis.
Trait Implementations§
Source§impl Clone for K8sBetaAPIConfig
impl Clone for K8sBetaAPIConfig
Source§fn clone(&self) -> K8sBetaAPIConfig
fn clone(&self) -> K8sBetaAPIConfig
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 Debug for K8sBetaAPIConfig
impl Debug for K8sBetaAPIConfig
Source§impl Default for K8sBetaAPIConfig
impl Default for K8sBetaAPIConfig
Source§fn default() -> K8sBetaAPIConfig
fn default() -> K8sBetaAPIConfig
Returns the “default value” for a type. Read more
Source§impl Message for K8sBetaAPIConfig
impl Message for K8sBetaAPIConfig
Source§impl PartialEq for K8sBetaAPIConfig
impl PartialEq for K8sBetaAPIConfig
impl StructuralPartialEq for K8sBetaAPIConfig
Auto Trait Implementations§
impl Freeze for K8sBetaAPIConfig
impl RefUnwindSafe for K8sBetaAPIConfig
impl Send for K8sBetaAPIConfig
impl Sync for K8sBetaAPIConfig
impl Unpin for K8sBetaAPIConfig
impl UnwindSafe for K8sBetaAPIConfig
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