pub struct OperationBulkCreateOperations {
pub method: Method,
pub domain: String,
pub path: String,
pub description: Option<String>,
pub tag_ids: Option<Vec<String>>,
pub status: Option<Status>,
}Fields§
§method: MethodThe HTTP method for the operation.
domain: StringThe domain for the operation.
path: StringThe path for the operation.
description: Option<String>A description of what the operation does.
tag_ids: Option<Vec<String>>An array of tag IDs to associate with this operation.
status: Option<Status>The status to assign to the operation. Defaults to SAVED if omitted.
Implementations§
Trait Implementations§
Source§impl Clone for OperationBulkCreateOperations
impl Clone for OperationBulkCreateOperations
Source§fn clone(&self) -> OperationBulkCreateOperations
fn clone(&self) -> OperationBulkCreateOperations
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 OperationBulkCreateOperations
impl Default for OperationBulkCreateOperations
Source§fn default() -> OperationBulkCreateOperations
fn default() -> OperationBulkCreateOperations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationBulkCreateOperations
impl<'de> Deserialize<'de> for OperationBulkCreateOperations
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 OperationBulkCreateOperations
impl PartialEq for OperationBulkCreateOperations
Source§fn eq(&self, other: &OperationBulkCreateOperations) -> bool
fn eq(&self, other: &OperationBulkCreateOperations) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OperationBulkCreateOperations
Auto Trait Implementations§
impl Freeze for OperationBulkCreateOperations
impl RefUnwindSafe for OperationBulkCreateOperations
impl Send for OperationBulkCreateOperations
impl Sync for OperationBulkCreateOperations
impl Unpin for OperationBulkCreateOperations
impl UnsafeUnpin for OperationBulkCreateOperations
impl UnwindSafe for OperationBulkCreateOperations
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