pub struct PatchedVirtualChassisRequest {
pub id: Option<Uuid>,
pub name: Option<String>,
pub domain: Option<String>,
pub master: Option<Option<Box<ApprovalWorkflowUser>>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
PatchedVirtualChassisRequest : 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: Option<Uuid>§name: Option<String>§domain: Option<String>§master: Option<Option<Box<ApprovalWorkflowUser>>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl PatchedVirtualChassisRequest
impl PatchedVirtualChassisRequest
Sourcepub fn new() -> PatchedVirtualChassisRequest
pub fn new() -> PatchedVirtualChassisRequest
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 PatchedVirtualChassisRequest
impl Clone for PatchedVirtualChassisRequest
Source§fn clone(&self) -> PatchedVirtualChassisRequest
fn clone(&self) -> PatchedVirtualChassisRequest
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 PatchedVirtualChassisRequest
impl Debug for PatchedVirtualChassisRequest
Source§impl Default for PatchedVirtualChassisRequest
impl Default for PatchedVirtualChassisRequest
Source§fn default() -> PatchedVirtualChassisRequest
fn default() -> PatchedVirtualChassisRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedVirtualChassisRequest
impl<'de> Deserialize<'de> for PatchedVirtualChassisRequest
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 PatchedVirtualChassisRequest
impl PartialEq for PatchedVirtualChassisRequest
Source§fn eq(&self, other: &PatchedVirtualChassisRequest) -> bool
fn eq(&self, other: &PatchedVirtualChassisRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchedVirtualChassisRequest
Auto Trait Implementations§
impl Freeze for PatchedVirtualChassisRequest
impl RefUnwindSafe for PatchedVirtualChassisRequest
impl Send for PatchedVirtualChassisRequest
impl Sync for PatchedVirtualChassisRequest
impl Unpin for PatchedVirtualChassisRequest
impl UnsafeUnpin for PatchedVirtualChassisRequest
impl UnwindSafe for PatchedVirtualChassisRequest
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