pub struct TimelineSummaryCacheRow {
pub lookup_key: String,
pub namespace: String,
pub compact: String,
pub payload: String,
pub raw: String,
pub cached_at: String,
}Expand description
A cached timeline summary row stored in the local index/cache DB.
Fields§
§lookup_key: String§namespace: String§compact: String§payload: String§raw: String§cached_at: StringTrait Implementations§
Source§impl Clone for TimelineSummaryCacheRow
impl Clone for TimelineSummaryCacheRow
Source§fn clone(&self) -> TimelineSummaryCacheRow
fn clone(&self) -> TimelineSummaryCacheRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TimelineSummaryCacheRow
impl RefUnwindSafe for TimelineSummaryCacheRow
impl Send for TimelineSummaryCacheRow
impl Sync for TimelineSummaryCacheRow
impl Unpin for TimelineSummaryCacheRow
impl UnsafeUnpin for TimelineSummaryCacheRow
impl UnwindSafe for TimelineSummaryCacheRow
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