pub enum PatchSkipReason {
MissingDeclaredRead(String),
Retired,
ZeroVersion,
NotProcedural,
PersistFailed(String),
}Variants§
MissingDeclaredRead(String)
Retired
ZeroVersion
NotProcedural
Node was not a procedural patch payload.
PersistFailed(String)
Failed to persist fitness update.
Trait Implementations§
Source§impl Clone for PatchSkipReason
impl Clone for PatchSkipReason
Source§fn clone(&self) -> PatchSkipReason
fn clone(&self) -> PatchSkipReason
Returns a duplicate of the value. Read more
1.0.0 · 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 PatchSkipReason
impl Debug for PatchSkipReason
Source§impl Display for PatchSkipReason
impl Display for PatchSkipReason
Source§impl PartialEq for PatchSkipReason
impl PartialEq for PatchSkipReason
impl Eq for PatchSkipReason
impl StructuralPartialEq for PatchSkipReason
Auto Trait Implementations§
impl Freeze for PatchSkipReason
impl RefUnwindSafe for PatchSkipReason
impl Send for PatchSkipReason
impl Sync for PatchSkipReason
impl Unpin for PatchSkipReason
impl UnsafeUnpin for PatchSkipReason
impl UnwindSafe for PatchSkipReason
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