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