pub enum SerialProvenanceStatus {
Preserved,
Invalidated {
reason: &'static str,
},
}Expand description
Whether a serial provenance facet survived a transform or was retired explicitly.
Variants§
Preserved
The facet remains valid after the transform.
Invalidated
The transform retired the facet for the stated reason.
Trait Implementations§
Source§impl Clone for SerialProvenanceStatus
impl Clone for SerialProvenanceStatus
Source§fn clone(&self) -> SerialProvenanceStatus
fn clone(&self) -> SerialProvenanceStatus
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 SerialProvenanceStatus
impl Debug for SerialProvenanceStatus
impl Eq for SerialProvenanceStatus
Source§impl PartialEq for SerialProvenanceStatus
impl PartialEq for SerialProvenanceStatus
impl StructuralPartialEq for SerialProvenanceStatus
Auto Trait Implementations§
impl Freeze for SerialProvenanceStatus
impl RefUnwindSafe for SerialProvenanceStatus
impl Send for SerialProvenanceStatus
impl Sync for SerialProvenanceStatus
impl Unpin for SerialProvenanceStatus
impl UnsafeUnpin for SerialProvenanceStatus
impl UnwindSafe for SerialProvenanceStatus
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