pub enum SnapshotKind {
Full,
Diff,
}Expand description
Snapshot kind requested by the operator.
Variants§
Full
Full snapshot — entire memory dumped.
Diff
Diff snapshot — only dirty pages since the last clean checkpoint.
Trait Implementations§
Source§impl Clone for SnapshotKind
impl Clone for SnapshotKind
Source§fn clone(&self) -> SnapshotKind
fn clone(&self) -> SnapshotKind
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 SnapshotKind
impl Debug for SnapshotKind
Source§impl PartialEq for SnapshotKind
impl PartialEq for SnapshotKind
Source§fn eq(&self, other: &SnapshotKind) -> bool
fn eq(&self, other: &SnapshotKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SnapshotKind
impl Eq for SnapshotKind
impl StructuralPartialEq for SnapshotKind
Auto Trait Implementations§
impl Freeze for SnapshotKind
impl RefUnwindSafe for SnapshotKind
impl Send for SnapshotKind
impl Sync for SnapshotKind
impl Unpin for SnapshotKind
impl UnsafeUnpin for SnapshotKind
impl UnwindSafe for SnapshotKind
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