pub enum ServiceTier {
Development,
Production,
Dedicated_high_mem,
Dedicated_high_cpu,
Dedicated_standard,
Dedicated_standard_n2d_standard_4,
Dedicated_standard_n2d_standard_8,
Dedicated_standard_n2d_standard_32,
Dedicated_standard_n2d_standard_128,
Dedicated_standard_n2d_standard_32_16SSD,
Dedicated_standard_n2d_standard_64_24SSD,
Unknown(String),
}Expand description
Inline enum for Service.tier.
Variants§
Development
Production
Dedicated_high_mem
Dedicated_high_cpu
Dedicated_standard
Dedicated_standard_n2d_standard_4
Dedicated_standard_n2d_standard_8
Dedicated_standard_n2d_standard_32
Dedicated_standard_n2d_standard_128
Dedicated_standard_n2d_standard_32_16SSD
Dedicated_standard_n2d_standard_64_24SSD
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ServiceTier
impl Clone for ServiceTier
Source§fn clone(&self) -> ServiceTier
fn clone(&self) -> ServiceTier
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 ServiceTier
impl Debug for ServiceTier
Source§impl Default for ServiceTier
impl Default for ServiceTier
Source§fn default() -> ServiceTier
fn default() -> ServiceTier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceTier
impl<'de> Deserialize<'de> for ServiceTier
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 ServiceTier
impl Display for ServiceTier
Source§impl PartialEq for ServiceTier
impl PartialEq for ServiceTier
Source§fn eq(&self, other: &ServiceTier) -> bool
fn eq(&self, other: &ServiceTier) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceTier
impl Serialize for ServiceTier
impl StructuralPartialEq for ServiceTier
Auto Trait Implementations§
impl Freeze for ServiceTier
impl RefUnwindSafe for ServiceTier
impl Send for ServiceTier
impl Sync for ServiceTier
impl Unpin for ServiceTier
impl UnsafeUnpin for ServiceTier
impl UnwindSafe for ServiceTier
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