pub struct AvailableOperations {
pub value: Vec<ResourceOperation>,
}Expand description
Available operation list.
Fields§
§value: Vec<ResourceOperation>An array of available operations.
Implementations§
Trait Implementations§
Source§impl Clone for AvailableOperations
impl Clone for AvailableOperations
Source§fn clone(&self) -> AvailableOperations
fn clone(&self) -> AvailableOperations
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AvailableOperations
impl Debug for AvailableOperations
Source§impl Default for AvailableOperations
impl Default for AvailableOperations
Source§fn default() -> AvailableOperations
fn default() -> AvailableOperations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AvailableOperations
impl<'de> Deserialize<'de> for AvailableOperations
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 AvailableOperations
impl PartialEq for AvailableOperations
Source§fn eq(&self, other: &AvailableOperations) -> bool
fn eq(&self, other: &AvailableOperations) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AvailableOperations
impl Serialize for AvailableOperations
impl StructuralPartialEq for AvailableOperations
Auto Trait Implementations§
impl Freeze for AvailableOperations
impl RefUnwindSafe for AvailableOperations
impl Send for AvailableOperations
impl Sync for AvailableOperations
impl Unpin for AvailableOperations
impl UnsafeUnpin for AvailableOperations
impl UnwindSafe for AvailableOperations
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