pub struct PatchedClusterGroupRequest {
pub name: Option<String>,
pub slug: Option<String>,
pub description: Option<String>,
pub owner: Option<Option<Box<AsnRangeRequestOwner>>>,
pub comments: Option<String>,
pub tags: Option<Vec<NestedTagRequest>>,
pub custom_fields: Option<HashMap<String, Value>>,
}Expand description
PatchedClusterGroupRequest : Base serializer class for models inheriting from OrganizationalModel.
Fields§
§name: Option<String>§slug: Option<String>§description: Option<String>§owner: Option<Option<Box<AsnRangeRequestOwner>>>§comments: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl PatchedClusterGroupRequest
impl PatchedClusterGroupRequest
Sourcepub fn new() -> PatchedClusterGroupRequest
pub fn new() -> PatchedClusterGroupRequest
Base serializer class for models inheriting from OrganizationalModel.
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 (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 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
Source§impl PartialEq for PatchedClusterGroupRequest
impl PartialEq for PatchedClusterGroupRequest
Source§fn eq(&self, other: &PatchedClusterGroupRequest) -> bool
fn eq(&self, other: &PatchedClusterGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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