pub enum TestSnapshotStatus {
Missing,
Created,
Matched,
Changed,
Accepted,
Rejected,
}Expand description
Snapshot comparison or review status.
Variants§
Trait Implementations§
Source§impl Clone for TestSnapshotStatus
impl Clone for TestSnapshotStatus
Source§fn clone(&self) -> TestSnapshotStatus
fn clone(&self) -> TestSnapshotStatus
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 TestSnapshotStatus
impl Debug for TestSnapshotStatus
Source§impl Default for TestSnapshotStatus
impl Default for TestSnapshotStatus
Source§fn default() -> TestSnapshotStatus
fn default() -> TestSnapshotStatus
Returns the “default value” for a type. Read more
Source§impl Hash for TestSnapshotStatus
impl Hash for TestSnapshotStatus
Source§impl PartialEq for TestSnapshotStatus
impl PartialEq for TestSnapshotStatus
Source§fn eq(&self, other: &TestSnapshotStatus) -> bool
fn eq(&self, other: &TestSnapshotStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TestSnapshotStatus
impl Eq for TestSnapshotStatus
impl StructuralPartialEq for TestSnapshotStatus
Auto Trait Implementations§
impl Freeze for TestSnapshotStatus
impl RefUnwindSafe for TestSnapshotStatus
impl Send for TestSnapshotStatus
impl Sync for TestSnapshotStatus
impl Unpin for TestSnapshotStatus
impl UnsafeUnpin for TestSnapshotStatus
impl UnwindSafe for TestSnapshotStatus
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