pub struct KubernetesResourceCreateParameters {
pub cluster_name: Option<String>,
pub name: Option<String>,
pub namespace: Option<String>,
pub tags: Vec<String>,
}Expand description
Fields§
§cluster_name: Option<String>§name: Option<String>§namespace: Option<String>Tags of the kubernetes resource.
Implementations§
Trait Implementations§
source§impl Clone for KubernetesResourceCreateParameters
impl Clone for KubernetesResourceCreateParameters
source§fn clone(&self) -> KubernetesResourceCreateParameters
fn clone(&self) -> KubernetesResourceCreateParameters
Returns a copy 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 Default for KubernetesResourceCreateParameters
impl Default for KubernetesResourceCreateParameters
source§fn default() -> KubernetesResourceCreateParameters
fn default() -> KubernetesResourceCreateParameters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for KubernetesResourceCreateParameters
impl<'de> Deserialize<'de> for KubernetesResourceCreateParameters
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for KubernetesResourceCreateParameters
impl PartialEq for KubernetesResourceCreateParameters
source§fn eq(&self, other: &KubernetesResourceCreateParameters) -> bool
fn eq(&self, other: &KubernetesResourceCreateParameters) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KubernetesResourceCreateParameters
Auto Trait Implementations§
impl Freeze for KubernetesResourceCreateParameters
impl RefUnwindSafe for KubernetesResourceCreateParameters
impl Send for KubernetesResourceCreateParameters
impl Sync for KubernetesResourceCreateParameters
impl Unpin for KubernetesResourceCreateParameters
impl UnwindSafe for KubernetesResourceCreateParameters
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