pub enum ChainSyncKind {
RequestNext,
AwaitReply,
RollForward,
RollBackward,
FindIntersect,
IntersectionFound,
IntersectionNotFound,
SyncDone,
}
Expand description
Auto-generated discriminant enum variants
Variants§
RequestNext
AwaitReply
RollForward
RollBackward
FindIntersect
IntersectionFound
IntersectionNotFound
SyncDone
Trait Implementations§
Source§impl Clone for ChainSyncKind
impl Clone for ChainSyncKind
Source§fn clone(&self) -> ChainSyncKind
fn clone(&self) -> ChainSyncKind
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 ChainSyncKind
impl Debug for ChainSyncKind
Source§impl<'_enum> From<&'_enum ChainSync> for ChainSyncKind
impl<'_enum> From<&'_enum ChainSync> for ChainSyncKind
Source§fn from(val: &'_enum ChainSync) -> ChainSyncKind
fn from(val: &'_enum ChainSync) -> ChainSyncKind
Converts to this type from the input type.
Source§impl From<ChainSync> for ChainSyncKind
impl From<ChainSync> for ChainSyncKind
Source§fn from(val: ChainSync) -> ChainSyncKind
fn from(val: ChainSync) -> ChainSyncKind
Converts to this type from the input type.
Source§impl PartialEq for ChainSyncKind
impl PartialEq for ChainSyncKind
impl Copy for ChainSyncKind
impl Eq for ChainSyncKind
impl StructuralPartialEq for ChainSyncKind
Auto Trait Implementations§
impl Freeze for ChainSyncKind
impl RefUnwindSafe for ChainSyncKind
impl Send for ChainSyncKind
impl Sync for ChainSyncKind
impl Unpin for ChainSyncKind
impl UnwindSafe for ChainSyncKind
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