pub enum ParameterTier {
Standard,
Advanced,
IntelligentTiering,
}Expand description
The tier of a parameter, which affects storage limits.
Variants§
Standard
Standard tier (4 KB value limit).
Advanced
Advanced tier (8 KB value limit, additional features).
IntelligentTiering
Intelligent-Tiering (automatically selects tier).
Implementations§
Trait Implementations§
Source§impl Clone for ParameterTier
impl Clone for ParameterTier
Source§fn clone(&self) -> ParameterTier
fn clone(&self) -> ParameterTier
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 ParameterTier
impl Debug for ParameterTier
Source§impl Default for ParameterTier
impl Default for ParameterTier
Source§fn default() -> ParameterTier
fn default() -> ParameterTier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParameterTier
impl<'de> Deserialize<'de> for ParameterTier
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 ParameterTier
impl Display for ParameterTier
Source§impl Hash for ParameterTier
impl Hash for ParameterTier
Source§impl PartialEq for ParameterTier
impl PartialEq for ParameterTier
Source§fn eq(&self, other: &ParameterTier) -> bool
fn eq(&self, other: &ParameterTier) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ParameterTier
impl Serialize for ParameterTier
impl Eq for ParameterTier
impl StructuralPartialEq for ParameterTier
Auto Trait Implementations§
impl Freeze for ParameterTier
impl RefUnwindSafe for ParameterTier
impl Send for ParameterTier
impl Sync for ParameterTier
impl Unpin for ParameterTier
impl UnsafeUnpin for ParameterTier
impl UnwindSafe for ParameterTier
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