pub enum DescribeStatusState {
Initializing,
ScalingUp,
ScalingDown,
Terminating,
Ready,
InitializationFailed,
}
Expand description
Current Status of an Index. Whenever you create a new index, for a minute or see you will recieve an Initializing index status and connot run any index operations on it.
Variants§
Initializing
Initializing.
ScalingUp
Scaling Up.
ScalingDown
ScalingDown.
Terminating
Terminating.
Ready
Ready.
InitializationFailed
InitializationFailed.
Trait Implementations§
Source§impl Clone for DescribeStatusState
impl Clone for DescribeStatusState
Source§fn clone(&self) -> DescribeStatusState
fn clone(&self) -> DescribeStatusState
Returns a copy of the value. Read more
1.0.0 · 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 DescribeStatusState
impl Debug for DescribeStatusState
Source§impl Default for DescribeStatusState
impl Default for DescribeStatusState
Source§fn default() -> DescribeStatusState
fn default() -> DescribeStatusState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeStatusState
impl<'de> Deserialize<'de> for DescribeStatusState
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 DescribeStatusState
impl Display for DescribeStatusState
Auto Trait Implementations§
impl Freeze for DescribeStatusState
impl RefUnwindSafe for DescribeStatusState
impl Send for DescribeStatusState
impl Sync for DescribeStatusState
impl Unpin for DescribeStatusState
impl UnwindSafe for DescribeStatusState
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