pub struct RecoverySnapshot {
pub unsaved_buffers: Vec<UnsavedBuffer>,
pub timestamp: SystemTime,
}Expand description
Recovery state snapshot.
Fields§
§unsaved_buffers: Vec<UnsavedBuffer>Unsaved buffers at time of crash.
timestamp: SystemTimeTimestamp of the crash.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecoverySnapshot
impl RefUnwindSafe for RecoverySnapshot
impl Send for RecoverySnapshot
impl Sync for RecoverySnapshot
impl Unpin for RecoverySnapshot
impl UnsafeUnpin for RecoverySnapshot
impl UnwindSafe for RecoverySnapshot
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