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