pub enum BulkProviderInstanceActionResponseAction {
Enable,
Disable,
}Expand description
BulkProviderInstanceActionResponseAction
JSON schema
{
"type": "string",
"enum": [
"enable",
"disable"
]
}Variants§
Trait Implementations§
Source§impl Clone for BulkProviderInstanceActionResponseAction
impl Clone for BulkProviderInstanceActionResponseAction
Source§fn clone(&self) -> BulkProviderInstanceActionResponseAction
fn clone(&self) -> BulkProviderInstanceActionResponseAction
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<'de> Deserialize<'de> for BulkProviderInstanceActionResponseAction
impl<'de> Deserialize<'de> for BulkProviderInstanceActionResponseAction
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 From<&BulkProviderInstanceActionResponseAction> for BulkProviderInstanceActionResponseAction
impl From<&BulkProviderInstanceActionResponseAction> for BulkProviderInstanceActionResponseAction
Source§fn from(value: &BulkProviderInstanceActionResponseAction) -> Self
fn from(value: &BulkProviderInstanceActionResponseAction) -> Self
Converts to this type from the input type.
Source§impl Ord for BulkProviderInstanceActionResponseAction
impl Ord for BulkProviderInstanceActionResponseAction
Source§fn cmp(&self, other: &BulkProviderInstanceActionResponseAction) -> Ordering
fn cmp(&self, other: &BulkProviderInstanceActionResponseAction) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BulkProviderInstanceActionResponseAction
impl PartialEq for BulkProviderInstanceActionResponseAction
Source§fn eq(&self, other: &BulkProviderInstanceActionResponseAction) -> bool
fn eq(&self, other: &BulkProviderInstanceActionResponseAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BulkProviderInstanceActionResponseAction
impl PartialOrd for BulkProviderInstanceActionResponseAction
Source§impl TryFrom<&String> for BulkProviderInstanceActionResponseAction
impl TryFrom<&String> for BulkProviderInstanceActionResponseAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for BulkProviderInstanceActionResponseAction
impl TryFrom<&str> for BulkProviderInstanceActionResponseAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for BulkProviderInstanceActionResponseAction
impl TryFrom<String> for BulkProviderInstanceActionResponseAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for BulkProviderInstanceActionResponseAction
impl Eq for BulkProviderInstanceActionResponseAction
impl StructuralPartialEq for BulkProviderInstanceActionResponseAction
Auto Trait Implementations§
impl Freeze for BulkProviderInstanceActionResponseAction
impl RefUnwindSafe for BulkProviderInstanceActionResponseAction
impl Send for BulkProviderInstanceActionResponseAction
impl Sync for BulkProviderInstanceActionResponseAction
impl Unpin for BulkProviderInstanceActionResponseAction
impl UnsafeUnpin for BulkProviderInstanceActionResponseAction
impl UnwindSafe for BulkProviderInstanceActionResponseAction
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