pub struct ClusterEdit {
pub name: Option<String>,
pub description: Option<String>,
pub oidc_provider: Option<Box<ClusterEditOidcProvider>>,
}Fields§
§name: Option<String>Новое название кластера
description: Option<String>Новое описание кластера
oidc_provider: Option<Box<ClusterEditOidcProvider>>Implementations§
Source§impl ClusterEdit
impl ClusterEdit
pub fn new() -> ClusterEdit
Trait Implementations§
Source§impl Clone for ClusterEdit
impl Clone for ClusterEdit
Source§fn clone(&self) -> ClusterEdit
fn clone(&self) -> ClusterEdit
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 ClusterEdit
impl Debug for ClusterEdit
Source§impl Default for ClusterEdit
impl Default for ClusterEdit
Source§fn default() -> ClusterEdit
fn default() -> ClusterEdit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterEdit
impl<'de> Deserialize<'de> for ClusterEdit
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 ClusterEdit
impl PartialEq for ClusterEdit
Source§fn eq(&self, other: &ClusterEdit) -> bool
fn eq(&self, other: &ClusterEdit) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClusterEdit
impl Serialize for ClusterEdit
impl StructuralPartialEq for ClusterEdit
Auto Trait Implementations§
impl Freeze for ClusterEdit
impl RefUnwindSafe for ClusterEdit
impl Send for ClusterEdit
impl Sync for ClusterEdit
impl Unpin for ClusterEdit
impl UnsafeUnpin for ClusterEdit
impl UnwindSafe for ClusterEdit
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