#[repr(i32)]
pub enum BondStatus {
Unspecified,
Unbonded,
Unbonding,
Bonded,
}Expand description
BondStatus is the status of a validator.
Variants§
Unspecified
UNSPECIFIED defines an invalid validator status.
Unbonded
UNBONDED defines a validator that is not bonded.
Unbonding
UNBONDING defines a validator that is unbonding.
Bonded
BONDED defines a validator that is bonded.
Implementations§
source§impl BondStatus
impl BondStatus
source§impl BondStatus
impl BondStatus
sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Trait Implementations§
source§impl Clone for BondStatus
impl Clone for BondStatus
source§fn clone(&self) -> BondStatus
fn clone(&self) -> BondStatus
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 BondStatus
impl Debug for BondStatus
source§impl Default for BondStatus
impl Default for BondStatus
source§fn default() -> BondStatus
fn default() -> BondStatus
Returns the “default value” for a type. Read more
source§impl From<BondStatus> for i32
impl From<BondStatus> for i32
source§fn from(value: BondStatus) -> i32
fn from(value: BondStatus) -> i32
Converts to this type from the input type.
source§impl Hash for BondStatus
impl Hash for BondStatus
source§impl Ord for BondStatus
impl Ord for BondStatus
source§fn cmp(&self, other: &BondStatus) -> Ordering
fn cmp(&self, other: &BondStatus) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<BondStatus> for BondStatus
impl PartialEq<BondStatus> for BondStatus
source§fn eq(&self, other: &BondStatus) -> bool
fn eq(&self, other: &BondStatus) -> bool
source§impl PartialOrd<BondStatus> for BondStatus
impl PartialOrd<BondStatus> for BondStatus
source§fn partial_cmp(&self, other: &BondStatus) -> Option<Ordering>
fn partial_cmp(&self, other: &BondStatus) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for BondStatus
impl Eq for BondStatus
impl StructuralEq for BondStatus
impl StructuralPartialEq for BondStatus
Auto Trait Implementations§
impl RefUnwindSafe for BondStatus
impl Send for BondStatus
impl Sync for BondStatus
impl Unpin for BondStatus
impl UnwindSafe for BondStatus
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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>
Wrap the input message
T in a tonic::Request