pub struct RecoverReceipt {
pub record_id: String,
pub previous_quality_state: MemoryQualityState,
pub previous_historical_state: MemoryHistoricalState,
pub quality_state: MemoryQualityState,
pub historical_state: MemoryHistoricalState,
pub changed: bool,
pub dry_run: bool,
}Fields§
§record_id: String§previous_quality_state: MemoryQualityState§previous_historical_state: MemoryHistoricalState§quality_state: MemoryQualityState§historical_state: MemoryHistoricalState§changed: bool§dry_run: boolTrait Implementations§
Source§impl Clone for RecoverReceipt
impl Clone for RecoverReceipt
Source§fn clone(&self) -> RecoverReceipt
fn clone(&self) -> RecoverReceipt
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 RecoverReceipt
impl Debug for RecoverReceipt
Source§impl<'de> Deserialize<'de> for RecoverReceipt
impl<'de> Deserialize<'de> for RecoverReceipt
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 PartialEq for RecoverReceipt
impl PartialEq for RecoverReceipt
Source§fn eq(&self, other: &RecoverReceipt) -> bool
fn eq(&self, other: &RecoverReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecoverReceipt
impl Serialize for RecoverReceipt
impl Eq for RecoverReceipt
impl StructuralPartialEq for RecoverReceipt
Auto Trait Implementations§
impl Freeze for RecoverReceipt
impl RefUnwindSafe for RecoverReceipt
impl Send for RecoverReceipt
impl Sync for RecoverReceipt
impl Unpin for RecoverReceipt
impl UnsafeUnpin for RecoverReceipt
impl UnwindSafe for RecoverReceipt
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