pub struct KubernetesAddRegistryBody {
pub cluster_uuids: Vec<String>,
}Expand description
KubernetesAddRegistryBody
JSON schema
{
"type": "object",
"properties": {
"cluster_uuids": {
"description": "An array containing the UUIDs of Kubernetes clusters.",
"examples": [
[
"bd5f5959-5e1e-4205-a714-a914373942af",
"50c2f44c-011d-493e-aee5-361a4a0d1844"
]
],
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§cluster_uuids: Vec<String>An array containing the UUIDs of Kubernetes clusters.
Trait Implementations§
Source§impl Clone for KubernetesAddRegistryBody
impl Clone for KubernetesAddRegistryBody
Source§fn clone(&self) -> KubernetesAddRegistryBody
fn clone(&self) -> KubernetesAddRegistryBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KubernetesAddRegistryBody
impl Debug for KubernetesAddRegistryBody
Source§impl Default for KubernetesAddRegistryBody
impl Default for KubernetesAddRegistryBody
Source§impl<'de> Deserialize<'de> for KubernetesAddRegistryBody
impl<'de> Deserialize<'de> for KubernetesAddRegistryBody
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 From<&KubernetesAddRegistryBody> for KubernetesAddRegistryBody
impl From<&KubernetesAddRegistryBody> for KubernetesAddRegistryBody
Source§fn from(value: &KubernetesAddRegistryBody) -> Self
fn from(value: &KubernetesAddRegistryBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KubernetesAddRegistryBody
impl RefUnwindSafe for KubernetesAddRegistryBody
impl Send for KubernetesAddRegistryBody
impl Sync for KubernetesAddRegistryBody
impl Unpin for KubernetesAddRegistryBody
impl UnsafeUnpin for KubernetesAddRegistryBody
impl UnwindSafe for KubernetesAddRegistryBody
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