pub struct ScalarPageWork {
pub envelope_identity: u64,
pub entries_visited: u64,
pub result_rows: u32,
}Expand description
Bounded work observed while producing one scalar page.
Fields§
§envelope_identity: u64Immutable identity of the page-work envelope bound into continuation.
entries_visited: u64Physical keys or index entries visited by this page execution.
result_rows: u32Logical rows returned to the caller.
Trait Implementations§
Source§impl CandidType for ScalarPageWork
impl CandidType for ScalarPageWork
Source§impl Clone for ScalarPageWork
impl Clone for ScalarPageWork
Source§fn clone(&self) -> ScalarPageWork
fn clone(&self) -> ScalarPageWork
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 moreimpl Copy for ScalarPageWork
Source§impl Debug for ScalarPageWork
impl Debug for ScalarPageWork
Source§impl<'de> Deserialize<'de> for ScalarPageWork
impl<'de> Deserialize<'de> for ScalarPageWork
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 ScalarPageWork
Source§impl PartialEq for ScalarPageWork
impl PartialEq for ScalarPageWork
impl StructuralPartialEq for ScalarPageWork
Auto Trait Implementations§
impl Freeze for ScalarPageWork
impl RefUnwindSafe for ScalarPageWork
impl Send for ScalarPageWork
impl Sync for ScalarPageWork
impl Unpin for ScalarPageWork
impl UnsafeUnpin for ScalarPageWork
impl UnwindSafe for ScalarPageWork
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