pub enum UpdateInfraCacheResponseDriver {
Off,
Memory,
Redis,
}Expand description
UpdateInfraCacheResponseDriver
JSON schema
{
"type": "string",
"enum": [
"off",
"memory",
"redis"
]
}Variants§
Trait Implementations§
Source§impl Clone for UpdateInfraCacheResponseDriver
impl Clone for UpdateInfraCacheResponseDriver
Source§fn clone(&self) -> UpdateInfraCacheResponseDriver
fn clone(&self) -> UpdateInfraCacheResponseDriver
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 UpdateInfraCacheResponseDriver
impl<'de> Deserialize<'de> for UpdateInfraCacheResponseDriver
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<&UpdateInfraCacheResponseDriver> for UpdateInfraCacheResponseDriver
impl From<&UpdateInfraCacheResponseDriver> for UpdateInfraCacheResponseDriver
Source§fn from(value: &UpdateInfraCacheResponseDriver) -> Self
fn from(value: &UpdateInfraCacheResponseDriver) -> Self
Converts to this type from the input type.
Source§impl Ord for UpdateInfraCacheResponseDriver
impl Ord for UpdateInfraCacheResponseDriver
Source§fn cmp(&self, other: &UpdateInfraCacheResponseDriver) -> Ordering
fn cmp(&self, other: &UpdateInfraCacheResponseDriver) -> 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 UpdateInfraCacheResponseDriver
impl PartialEq for UpdateInfraCacheResponseDriver
Source§fn eq(&self, other: &UpdateInfraCacheResponseDriver) -> bool
fn eq(&self, other: &UpdateInfraCacheResponseDriver) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for UpdateInfraCacheResponseDriver
impl PartialOrd for UpdateInfraCacheResponseDriver
Source§impl TryFrom<&String> for UpdateInfraCacheResponseDriver
impl TryFrom<&String> for UpdateInfraCacheResponseDriver
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for UpdateInfraCacheResponseDriver
impl TryFrom<&str> for UpdateInfraCacheResponseDriver
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for UpdateInfraCacheResponseDriver
impl TryFrom<String> for UpdateInfraCacheResponseDriver
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for UpdateInfraCacheResponseDriver
impl Eq for UpdateInfraCacheResponseDriver
impl StructuralPartialEq for UpdateInfraCacheResponseDriver
Auto Trait Implementations§
impl Freeze for UpdateInfraCacheResponseDriver
impl RefUnwindSafe for UpdateInfraCacheResponseDriver
impl Send for UpdateInfraCacheResponseDriver
impl Sync for UpdateInfraCacheResponseDriver
impl Unpin for UpdateInfraCacheResponseDriver
impl UnsafeUnpin for UpdateInfraCacheResponseDriver
impl UnwindSafe for UpdateInfraCacheResponseDriver
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