pub enum ServicePostRequestProfile {
V1_default,
V1_highmem_xs,
V1_highmem_s,
V1_highmem_m,
V1_highmem_l,
V1_highmem_xl,
Unknown(String),
}Expand description
Inline enum for ServicePostRequest.profile.
Variants§
V1_default
V1_highmem_xs
V1_highmem_s
V1_highmem_m
V1_highmem_l
V1_highmem_xl
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ServicePostRequestProfile
impl Clone for ServicePostRequestProfile
Source§fn clone(&self) -> ServicePostRequestProfile
fn clone(&self) -> ServicePostRequestProfile
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 ServicePostRequestProfile
impl Debug for ServicePostRequestProfile
Source§impl Default for ServicePostRequestProfile
impl Default for ServicePostRequestProfile
Source§fn default() -> ServicePostRequestProfile
fn default() -> ServicePostRequestProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServicePostRequestProfile
impl<'de> Deserialize<'de> for ServicePostRequestProfile
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 ServicePostRequestProfile
impl Display for ServicePostRequestProfile
Source§impl PartialEq for ServicePostRequestProfile
impl PartialEq for ServicePostRequestProfile
Source§fn eq(&self, other: &ServicePostRequestProfile) -> bool
fn eq(&self, other: &ServicePostRequestProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServicePostRequestProfile
Auto Trait Implementations§
impl Freeze for ServicePostRequestProfile
impl RefUnwindSafe for ServicePostRequestProfile
impl Send for ServicePostRequestProfile
impl Sync for ServicePostRequestProfile
impl Unpin for ServicePostRequestProfile
impl UnsafeUnpin for ServicePostRequestProfile
impl UnwindSafe for ServicePostRequestProfile
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