#[non_exhaustive]pub enum ConsensusClient {
Unspecified,
Lighthouse,
UnknownValue(UnknownValue),
}Expand description
The consensus client (also referred to as beacon node or CL client) implements the proof-of-stake consensus algorithm, which enables the network to achieve agreement based on validated data from the execution client.
See What are nodes and clients? for more details.
§Working with unknown values
This enum is defined as #[non_exhaustive] because Google Cloud may add
additional enum variants at any time. Adding new variants is not considered
a breaking change. Applications should write their code in anticipation of:
- New values appearing in future releases of the client library, and
- New values received dynamically, without application changes.
Please consult the Working with enums section in the user guide for some guidelines.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Unspecified
Consensus client has not been specified, but should be.
Lighthouse
Consensus client implementation written in Rust, maintained by Sigma Prime. See Lighthouse - Sigma Prime for details.
UnknownValue(UnknownValue)
If set, the enum was initialized with an unknown value.
Applications can examine the value using ConsensusClient::value or ConsensusClient::name.
Implementations§
Trait Implementations§
Source§impl Clone for ConsensusClient
impl Clone for ConsensusClient
Source§fn clone(&self) -> ConsensusClient
fn clone(&self) -> ConsensusClient
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ConsensusClient
impl Debug for ConsensusClient
Source§impl Default for ConsensusClient
impl Default for ConsensusClient
Source§impl<'de> Deserialize<'de> for ConsensusClient
impl<'de> Deserialize<'de> for ConsensusClient
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl Display for ConsensusClient
impl Display for ConsensusClient
Source§impl From<&str> for ConsensusClient
impl From<&str> for ConsensusClient
Source§impl From<i32> for ConsensusClient
impl From<i32> for ConsensusClient
Source§impl PartialEq for ConsensusClient
impl PartialEq for ConsensusClient
Source§impl Serialize for ConsensusClient
impl Serialize for ConsensusClient
impl StructuralPartialEq for ConsensusClient
Auto Trait Implementations§
impl Freeze for ConsensusClient
impl RefUnwindSafe for ConsensusClient
impl Send for ConsensusClient
impl Sync for ConsensusClient
impl Unpin for ConsensusClient
impl UnsafeUnpin for ConsensusClient
impl UnwindSafe for ConsensusClient
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request