pub struct CompactionReceiptV1 {
pub receipt_id: String,
pub before_digest: String,
pub after_digest: String,
pub what_lost: Vec<String>,
pub what_preserved: Vec<String>,
pub as_of_queries_correct: bool,
pub timestamp: String,
}Expand description
Receipt emitted after a compaction operation.
Fields§
§receipt_id: StringReceipt ID.
before_digest: StringDigest before compaction.
after_digest: StringDigest after compaction.
what_lost: Vec<String>What was lost in compaction.
what_preserved: Vec<String>What was preserved.
as_of_queries_correct: boolWhether as-of queries remain correct.
timestamp: StringTimestamp.
Trait Implementations§
Source§impl Clone for CompactionReceiptV1
impl Clone for CompactionReceiptV1
Source§fn clone(&self) -> CompactionReceiptV1
fn clone(&self) -> CompactionReceiptV1
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 CompactionReceiptV1
impl Debug for CompactionReceiptV1
Source§impl<'de> Deserialize<'de> for CompactionReceiptV1
impl<'de> Deserialize<'de> for CompactionReceiptV1
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
Auto Trait Implementations§
impl Freeze for CompactionReceiptV1
impl RefUnwindSafe for CompactionReceiptV1
impl Send for CompactionReceiptV1
impl Sync for CompactionReceiptV1
impl Unpin for CompactionReceiptV1
impl UnsafeUnpin for CompactionReceiptV1
impl UnwindSafe for CompactionReceiptV1
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