pub enum BeaconNodeEventTopic {
PayloadAttributes,
Head,
Block,
Attestation,
VoluntaryExit,
BlsToExecutionChange,
FinalizedCheckpoint,
ChainReorg,
ContributionAndProof,
LightClientFinalityUpdate,
LightClientOptimisticUpdate,
BlobSidecar,
}
Expand description
Topic variant for the eventstream API
Variants§
PayloadAttributes
The topic for payload attributes events.
Head
The topic for head events.
Block
The topic for block events.
Attestation
The topic for attestation events.
VoluntaryExit
The topic for voluntary exit events.
BlsToExecutionChange
The topic for BLS to execution change events.
FinalizedCheckpoint
The topic for finalized checkpoint events.
ChainReorg
The topic for chain reorganization events.
ContributionAndProof
The topic for contribution and proof events.
LightClientFinalityUpdate
The topic for light client finality update events.
LightClientOptimisticUpdate
The topic for light client optimistic update events.
BlobSidecar
The topic for blob sidecar events.
Implementations§
source§impl BeaconNodeEventTopic
impl BeaconNodeEventTopic
sourcepub const fn query_value(&self) -> &'static str
pub const fn query_value(&self) -> &'static str
Returns the identifier value for the eventstream query
Trait Implementations§
source§impl Clone for BeaconNodeEventTopic
impl Clone for BeaconNodeEventTopic
source§fn clone(&self) -> BeaconNodeEventTopic
fn clone(&self) -> BeaconNodeEventTopic
Returns a copy 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 BeaconNodeEventTopic
impl Debug for BeaconNodeEventTopic
source§impl PartialEq for BeaconNodeEventTopic
impl PartialEq for BeaconNodeEventTopic
impl Copy for BeaconNodeEventTopic
impl Eq for BeaconNodeEventTopic
impl StructuralPartialEq for BeaconNodeEventTopic
Auto Trait Implementations§
impl Freeze for BeaconNodeEventTopic
impl RefUnwindSafe for BeaconNodeEventTopic
impl Send for BeaconNodeEventTopic
impl Sync for BeaconNodeEventTopic
impl Unpin for BeaconNodeEventTopic
impl UnwindSafe for BeaconNodeEventTopic
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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