pub struct OperationUpdate {
pub method: Option<Method>,
pub domain: Option<String>,
pub path: Option<String>,
pub description: Option<String>,
pub tag_ids: Option<Vec<String>>,
}Fields§
§method: Option<Method>The HTTP method for the operation.
domain: Option<String>The domain for the operation.
path: Option<String>The path for the operation, which may include path parameters.
description: Option<String>A description of what the operation does.
tag_ids: Option<Vec<String>>An array of operation tag IDs associated with this operation.
Implementations§
Source§impl OperationUpdate
impl OperationUpdate
pub fn new() -> OperationUpdate
Trait Implementations§
Source§impl Clone for OperationUpdate
impl Clone for OperationUpdate
Source§fn clone(&self) -> OperationUpdate
fn clone(&self) -> OperationUpdate
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 OperationUpdate
impl Debug for OperationUpdate
Source§impl Default for OperationUpdate
impl Default for OperationUpdate
Source§fn default() -> OperationUpdate
fn default() -> OperationUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationUpdate
impl<'de> Deserialize<'de> for OperationUpdate
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 OperationUpdate
impl PartialEq for OperationUpdate
Source§impl Serialize for OperationUpdate
impl Serialize for OperationUpdate
impl StructuralPartialEq for OperationUpdate
Auto Trait Implementations§
impl Freeze for OperationUpdate
impl RefUnwindSafe for OperationUpdate
impl Send for OperationUpdate
impl Sync for OperationUpdate
impl Unpin for OperationUpdate
impl UnsafeUnpin for OperationUpdate
impl UnwindSafe for OperationUpdate
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