pub struct SessionListing {
pub entries: Vec<ArchiveEntry>,
pub failures: Vec<SessionFailure>,
}Expand description
Result of listing the archive.
Fields§
§entries: Vec<ArchiveEntry>Valid entries ordered by most recent activity.
failures: Vec<SessionFailure>Unreadable sessions with the reason each was skipped.
Trait Implementations§
Source§impl Clone for SessionListing
impl Clone for SessionListing
Source§fn clone(&self) -> SessionListing
fn clone(&self) -> SessionListing
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 SessionListing
impl Debug for SessionListing
Source§impl Default for SessionListing
impl Default for SessionListing
Source§fn default() -> SessionListing
fn default() -> SessionListing
Returns the “default value” for a type. Read more
impl Eq for SessionListing
Source§impl PartialEq for SessionListing
impl PartialEq for SessionListing
impl StructuralPartialEq for SessionListing
Auto Trait Implementations§
impl Freeze for SessionListing
impl RefUnwindSafe for SessionListing
impl Send for SessionListing
impl Sync for SessionListing
impl Unpin for SessionListing
impl UnsafeUnpin for SessionListing
impl UnwindSafe for SessionListing
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