pub enum SessionsOpenProgressStatus {
InProgress,
Complete,
Unknown,
}Expand description
Step status.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
InProgress
The step has started and has not yet finished.
Complete
The step has completed successfully.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for SessionsOpenProgressStatus
impl Clone for SessionsOpenProgressStatus
Source§fn clone(&self) -> SessionsOpenProgressStatus
fn clone(&self) -> SessionsOpenProgressStatus
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 SessionsOpenProgressStatus
impl Debug for SessionsOpenProgressStatus
Source§impl Default for SessionsOpenProgressStatus
impl Default for SessionsOpenProgressStatus
Source§fn default() -> SessionsOpenProgressStatus
fn default() -> SessionsOpenProgressStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionsOpenProgressStatus
impl<'de> Deserialize<'de> for SessionsOpenProgressStatus
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
impl Eq for SessionsOpenProgressStatus
Source§impl PartialEq for SessionsOpenProgressStatus
impl PartialEq for SessionsOpenProgressStatus
Source§fn eq(&self, other: &SessionsOpenProgressStatus) -> bool
fn eq(&self, other: &SessionsOpenProgressStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionsOpenProgressStatus
Auto Trait Implementations§
impl Freeze for SessionsOpenProgressStatus
impl RefUnwindSafe for SessionsOpenProgressStatus
impl Send for SessionsOpenProgressStatus
impl Sync for SessionsOpenProgressStatus
impl Unpin for SessionsOpenProgressStatus
impl UnsafeUnpin for SessionsOpenProgressStatus
impl UnwindSafe for SessionsOpenProgressStatus
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