pub enum BlockOrigin {
Local,
Sync,
Broadcast,
}
Expand description
Origin
Variants§
Local
Created locally
Sync
Received during sync process
Broadcast
Broadcast on the network during normal operation (not sync)
Trait Implementations§
Source§impl Clone for BlockOrigin
impl Clone for BlockOrigin
Source§fn clone(&self) -> BlockOrigin
fn clone(&self) -> BlockOrigin
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 BlockOrigin
impl Debug for BlockOrigin
Source§impl PartialEq for BlockOrigin
impl PartialEq for BlockOrigin
impl Copy for BlockOrigin
impl Eq for BlockOrigin
impl StructuralPartialEq for BlockOrigin
Auto Trait Implementations§
impl Freeze for BlockOrigin
impl RefUnwindSafe for BlockOrigin
impl Send for BlockOrigin
impl Sync for BlockOrigin
impl Unpin for BlockOrigin
impl UnwindSafe for BlockOrigin
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more