pub struct Receipt {
pub operation_id: String,
pub operation: Operation,
pub rows: u64,
pub cells: u64,
pub bytes: u64,
pub work: u64,
pub affected: u64,
}Expand description
Receipt deliberately excludes locator, bindings, row values, and provider errors.
Fields§
§operation_id: StringStable checked plan/program identity when applicable.
operation: OperationPublic operation kind.
rows: u64Rows pushed to the sink.
cells: u64Cells pushed to the sink.
bytes: u64Logical bytes pushed to the sink.
work: u64Provider work units.
affected: u64Rows affected.
Trait Implementations§
impl Eq for Receipt
impl StructuralPartialEq for Receipt
Auto Trait Implementations§
impl Freeze for Receipt
impl RefUnwindSafe for Receipt
impl Send for Receipt
impl Sync for Receipt
impl Unpin for Receipt
impl UnsafeUnpin for Receipt
impl UnwindSafe for Receipt
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