pub enum StatePositive {
Succeeded,
}Expand description
Terminal state for positive (success) responses.
Variants§
Succeeded
Trait Implementations§
Source§impl Clone for StatePositive
impl Clone for StatePositive
Source§fn clone(&self) -> StatePositive
fn clone(&self) -> StatePositive
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 moreimpl Copy for StatePositive
Source§impl Debug for StatePositive
impl Debug for StatePositive
Source§impl<'de> Deserialize<'de> for StatePositive
impl<'de> Deserialize<'de> for StatePositive
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 StatePositive
Source§impl PartialEq for StatePositive
impl PartialEq for StatePositive
Source§fn eq(&self, other: &StatePositive) -> bool
fn eq(&self, other: &StatePositive) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StatePositive
impl Serialize for StatePositive
impl StructuralPartialEq for StatePositive
Auto Trait Implementations§
impl Freeze for StatePositive
impl RefUnwindSafe for StatePositive
impl Send for StatePositive
impl Sync for StatePositive
impl Unpin for StatePositive
impl UnsafeUnpin for StatePositive
impl UnwindSafe for StatePositive
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