pub struct PatchedClusterGroupRequest {
pub name: Option<String>,
pub slug: Option<String>,
pub description: Option<String>,
pub tags: Option<Vec<NestedTagRequest>>,
pub custom_fields: Option<HashMap<String, Value>>,
}Expand description
PatchedClusterGroupRequest : Adds support for custom fields and tags.
Fields§
§name: Option<String>§slug: Option<String>§description: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl PatchedClusterGroupRequest
impl PatchedClusterGroupRequest
Sourcepub fn new() -> PatchedClusterGroupRequest
pub fn new() -> PatchedClusterGroupRequest
Adds support for custom fields and tags.
Trait Implementations§
Source§impl Clone for PatchedClusterGroupRequest
impl Clone for PatchedClusterGroupRequest
Source§fn clone(&self) -> PatchedClusterGroupRequest
fn clone(&self) -> PatchedClusterGroupRequest
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 PatchedClusterGroupRequest
impl Debug for PatchedClusterGroupRequest
Source§impl Default for PatchedClusterGroupRequest
impl Default for PatchedClusterGroupRequest
Source§fn default() -> PatchedClusterGroupRequest
fn default() -> PatchedClusterGroupRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedClusterGroupRequest
impl<'de> Deserialize<'de> for PatchedClusterGroupRequest
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
impl StructuralPartialEq for PatchedClusterGroupRequest
Auto Trait Implementations§
impl Freeze for PatchedClusterGroupRequest
impl RefUnwindSafe for PatchedClusterGroupRequest
impl Send for PatchedClusterGroupRequest
impl Sync for PatchedClusterGroupRequest
impl Unpin for PatchedClusterGroupRequest
impl UnwindSafe for PatchedClusterGroupRequest
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