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