pub struct TimelineSummary {Show 13 fields
pub incomplete: bool,
pub plan_id: String,
pub plan_source: String,
pub closure_reason: String,
pub started_at_ms: u64,
pub last_activity_ms: u64,
pub candidate_keys: u64,
pub downloaded_keys: u64,
pub downloaded_bytes: u64,
pub used_keys: u64,
pub demanded_keys: u64,
pub demanded_candidate_keys: u64,
pub cancelled: bool,
}Expand description
The daemon’s per-session prefetch plan summary.
Fields§
§incomplete: boolSome prefetch outcomes were unavailable when the session closed.
plan_id: String§plan_source: String§closure_reason: String§started_at_ms: u64§last_activity_ms: u64§candidate_keys: u64§downloaded_keys: u64§downloaded_bytes: u64§used_keys: u64§demanded_keys: u64§demanded_candidate_keys: u64§cancelled: boolTrait Implementations§
Source§impl Clone for TimelineSummary
impl Clone for TimelineSummary
Source§fn clone(&self) -> TimelineSummary
fn clone(&self) -> TimelineSummary
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 TimelineSummary
impl Debug for TimelineSummary
Source§impl Default for TimelineSummary
impl Default for TimelineSummary
Source§fn default() -> TimelineSummary
fn default() -> TimelineSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimelineSummary
impl<'de> Deserialize<'de> for TimelineSummary
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 TimelineSummary
Source§impl PartialEq for TimelineSummary
impl PartialEq for TimelineSummary
Source§impl Serialize for TimelineSummary
impl Serialize for TimelineSummary
impl StructuralPartialEq for TimelineSummary
Auto Trait Implementations§
impl Freeze for TimelineSummary
impl RefUnwindSafe for TimelineSummary
impl Send for TimelineSummary
impl Sync for TimelineSummary
impl Unpin for TimelineSummary
impl UnsafeUnpin for TimelineSummary
impl UnwindSafe for TimelineSummary
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