pub struct OperationEntity {
pub name: Option<String>,
pub display: Option<OperationDisplayInfo>,
}Expand description
An API operation.
Fields§
§name: Option<String>Operation name: {provider}/{resource}/{operation}.
display: Option<OperationDisplayInfo>The API operation info.
Implementations§
Trait Implementations§
Source§impl Clone for OperationEntity
impl Clone for OperationEntity
Source§fn clone(&self) -> OperationEntity
fn clone(&self) -> OperationEntity
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 OperationEntity
impl Debug for OperationEntity
Source§impl Default for OperationEntity
impl Default for OperationEntity
Source§fn default() -> OperationEntity
fn default() -> OperationEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationEntity
impl<'de> Deserialize<'de> for OperationEntity
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 OperationEntity
impl PartialEq for OperationEntity
Source§impl Serialize for OperationEntity
impl Serialize for OperationEntity
impl StructuralPartialEq for OperationEntity
Auto Trait Implementations§
impl Freeze for OperationEntity
impl RefUnwindSafe for OperationEntity
impl Send for OperationEntity
impl Sync for OperationEntity
impl Unpin for OperationEntity
impl UnwindSafe for OperationEntity
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