pub struct ArchivedSessionSummary {
pub session_id: String,
pub key: String,
pub size_bytes: u64,
pub last_modified: u64,
}Expand description
Summary of an archived session in storage.
Fields§
§session_id: String§key: String§size_bytes: u64§last_modified: u64Epoch milliseconds.
Trait Implementations§
Source§impl Clone for ArchivedSessionSummary
impl Clone for ArchivedSessionSummary
Source§fn clone(&self) -> ArchivedSessionSummary
fn clone(&self) -> ArchivedSessionSummary
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 ArchivedSessionSummary
impl RefUnwindSafe for ArchivedSessionSummary
impl Send for ArchivedSessionSummary
impl Sync for ArchivedSessionSummary
impl Unpin for ArchivedSessionSummary
impl UnsafeUnpin for ArchivedSessionSummary
impl UnwindSafe for ArchivedSessionSummary
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