pub struct ArchiveSummary {
pub session_id: String,
pub key: String,
pub size_bytes: u64,
pub last_modified: String,
}Expand description
Summary of an archived session.
Fields§
§session_id: String§key: String§size_bytes: u64§last_modified: StringTrait Implementations§
Source§impl Clone for ArchiveSummary
impl Clone for ArchiveSummary
Source§fn clone(&self) -> ArchiveSummary
fn clone(&self) -> ArchiveSummary
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 moreSource§impl Debug for ArchiveSummary
impl Debug for ArchiveSummary
Source§impl<'de> Deserialize<'de> for ArchiveSummary
impl<'de> Deserialize<'de> for ArchiveSummary
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
Auto Trait Implementations§
impl Freeze for ArchiveSummary
impl RefUnwindSafe for ArchiveSummary
impl Send for ArchiveSummary
impl Sync for ArchiveSummary
impl Unpin for ArchiveSummary
impl UnsafeUnpin for ArchiveSummary
impl UnwindSafe for ArchiveSummary
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