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