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