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