pub enum SnapshotIssueSeverity {
Warning,
Error,
}Expand description
Severity assigned to a validation or migration issue.
Variants§
Warning
The document is usable, but decoding performed a noteworthy migration.
Error
The document is invalid and cannot be decoded or encoded.
Trait Implementations§
Source§impl Clone for SnapshotIssueSeverity
impl Clone for SnapshotIssueSeverity
Source§fn clone(&self) -> SnapshotIssueSeverity
fn clone(&self) -> SnapshotIssueSeverity
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 moreimpl Copy for SnapshotIssueSeverity
Source§impl Debug for SnapshotIssueSeverity
impl Debug for SnapshotIssueSeverity
Source§impl<'de> Deserialize<'de> for SnapshotIssueSeverity
impl<'de> Deserialize<'de> for SnapshotIssueSeverity
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
impl Eq for SnapshotIssueSeverity
Source§impl PartialEq for SnapshotIssueSeverity
impl PartialEq for SnapshotIssueSeverity
Source§impl Serialize for SnapshotIssueSeverity
impl Serialize for SnapshotIssueSeverity
impl StructuralPartialEq for SnapshotIssueSeverity
Auto Trait Implementations§
impl Freeze for SnapshotIssueSeverity
impl RefUnwindSafe for SnapshotIssueSeverity
impl Send for SnapshotIssueSeverity
impl Sync for SnapshotIssueSeverity
impl Unpin for SnapshotIssueSeverity
impl UnsafeUnpin for SnapshotIssueSeverity
impl UnwindSafe for SnapshotIssueSeverity
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