pub struct PatchedBulkWritableControllerManagedDeviceGroupRequest {
pub id: Uuid,
pub capabilities: Option<Option<Vec<CapabilitiesEnum>>>,
pub name: Option<String>,
pub description: Option<String>,
pub weight: Option<i32>,
pub parent: Option<Option<Box<ApprovalWorkflowUser>>>,
pub controller: Option<Box<BulkWritableControllerManagedDeviceGroupRequestController>>,
pub tenant: Option<Option<Box<ApprovalWorkflowUser>>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
PatchedBulkWritableControllerManagedDeviceGroupRequest : Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Fields§
§id: Uuid§capabilities: Option<Option<Vec<CapabilitiesEnum>>>§name: Option<String>Name of the controller device group
description: Option<String>§weight: Option<i32>Weight of the controller device group, used to sort the groups within its parent group
parent: Option<Option<Box<ApprovalWorkflowUser>>>§controller: Option<Box<BulkWritableControllerManagedDeviceGroupRequestController>>§tenant: Option<Option<Box<ApprovalWorkflowUser>>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl PatchedBulkWritableControllerManagedDeviceGroupRequest
impl PatchedBulkWritableControllerManagedDeviceGroupRequest
Sourcepub fn new(id: Uuid) -> PatchedBulkWritableControllerManagedDeviceGroupRequest
pub fn new(id: Uuid) -> PatchedBulkWritableControllerManagedDeviceGroupRequest
Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Trait Implementations§
Source§impl Clone for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl Clone for PatchedBulkWritableControllerManagedDeviceGroupRequest
Source§fn clone(&self) -> PatchedBulkWritableControllerManagedDeviceGroupRequest
fn clone(&self) -> PatchedBulkWritableControllerManagedDeviceGroupRequest
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 Default for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl Default for PatchedBulkWritableControllerManagedDeviceGroupRequest
Source§fn default() -> PatchedBulkWritableControllerManagedDeviceGroupRequest
fn default() -> PatchedBulkWritableControllerManagedDeviceGroupRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl<'de> Deserialize<'de> for PatchedBulkWritableControllerManagedDeviceGroupRequest
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 PatchedBulkWritableControllerManagedDeviceGroupRequest
impl PartialEq for PatchedBulkWritableControllerManagedDeviceGroupRequest
Source§fn eq(
&self,
other: &PatchedBulkWritableControllerManagedDeviceGroupRequest,
) -> bool
fn eq( &self, other: &PatchedBulkWritableControllerManagedDeviceGroupRequest, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchedBulkWritableControllerManagedDeviceGroupRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl RefUnwindSafe for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl Send for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl Sync for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl Unpin for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl UnsafeUnpin for PatchedBulkWritableControllerManagedDeviceGroupRequest
impl UnwindSafe for PatchedBulkWritableControllerManagedDeviceGroupRequest
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