pub struct OperationDisplay {
pub provider: Option<String>,
pub resource: Option<String>,
pub operation: Option<String>,
pub description: Option<String>,
}
Expand description
The object that represents the operation.
Fields§
§provider: Option<String>
Service provider, i.e., Microsoft.Datadog.
resource: Option<String>
Type on which the operation is performed, e.g., ‘monitors’.
operation: Option<String>
Operation type, e.g., read, write, delete, etc.
description: Option<String>
Description of the operation, e.g., ‘Write monitors’.
Implementations§
Trait Implementations§
source§impl Clone for OperationDisplay
impl Clone for OperationDisplay
source§fn clone(&self) -> OperationDisplay
fn clone(&self) -> OperationDisplay
Returns a copy 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 OperationDisplay
impl Debug for OperationDisplay
source§impl Default for OperationDisplay
impl Default for OperationDisplay
source§fn default() -> OperationDisplay
fn default() -> OperationDisplay
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for OperationDisplay
impl<'de> Deserialize<'de> for OperationDisplay
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<OperationDisplay> for OperationDisplay
impl PartialEq<OperationDisplay> for OperationDisplay
source§fn eq(&self, other: &OperationDisplay) -> bool
fn eq(&self, other: &OperationDisplay) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.