pub struct RecoveryState {
pub operation_id: String,
pub operation: RecoveryOperation,
pub original_variation: Option<String>,
pub target: Option<String>,
pub completed: bool,
}Expand description
Incomplete or recently completed Draftline operation state.
Fields§
§operation_id: String§operation: RecoveryOperation§original_variation: Option<String>§target: Option<String>§completed: boolTrait Implementations§
Source§impl Clone for RecoveryState
impl Clone for RecoveryState
Source§fn clone(&self) -> RecoveryState
fn clone(&self) -> RecoveryState
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 RecoveryState
impl Debug for RecoveryState
Source§impl<'de> Deserialize<'de> for RecoveryState
impl<'de> Deserialize<'de> for RecoveryState
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 RecoveryState
Source§impl PartialEq for RecoveryState
impl PartialEq for RecoveryState
Source§fn eq(&self, other: &RecoveryState) -> bool
fn eq(&self, other: &RecoveryState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecoveryState
impl Serialize for RecoveryState
impl StructuralPartialEq for RecoveryState
Auto Trait Implementations§
impl Freeze for RecoveryState
impl RefUnwindSafe for RecoveryState
impl Send for RecoveryState
impl Sync for RecoveryState
impl Unpin for RecoveryState
impl UnsafeUnpin for RecoveryState
impl UnwindSafe for RecoveryState
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