pub struct ReceiptSummary {
pub request_id: u64,
pub outcome: String,
pub dependencies: usize,
pub omitted_dependencies: usize,
pub started_tick: u64,
pub finished_tick: u64,
}Expand description
Bounded calculation-receipt facts shown in one outline row.
Fields§
§request_id: u64Stable request id.
outcome: StringOutcome token.
dependencies: usizeRetained dependency count.
omitted_dependencies: usizeOmitted dependency count.
started_tick: u64Logical start tick.
finished_tick: u64Logical finish tick.
Trait Implementations§
Source§impl Clone for ReceiptSummary
impl Clone for ReceiptSummary
Source§fn clone(&self) -> ReceiptSummary
fn clone(&self) -> ReceiptSummary
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 ReceiptSummary
impl Debug for ReceiptSummary
impl Eq for ReceiptSummary
Source§impl From<&CalcReceipt> for ReceiptSummary
impl From<&CalcReceipt> for ReceiptSummary
Source§fn from(receipt: &CalcReceipt) -> Self
fn from(receipt: &CalcReceipt) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReceiptSummary
impl PartialEq for ReceiptSummary
impl StructuralPartialEq for ReceiptSummary
Auto Trait Implementations§
impl Freeze for ReceiptSummary
impl RefUnwindSafe for ReceiptSummary
impl Send for ReceiptSummary
impl Sync for ReceiptSummary
impl Unpin for ReceiptSummary
impl UnsafeUnpin for ReceiptSummary
impl UnwindSafe for ReceiptSummary
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