Enum nibiru_std::proto::tendermint::types::BlockIdFlag
source · #[repr(i32)]pub enum BlockIdFlag {
Unknown = 0,
Absent = 1,
Commit = 2,
Nil = 3,
}
Expand description
BlockIdFlag indicates which BlcokID the signature is for
Variants§
Implementations§
source§impl BlockIdFlag
impl BlockIdFlag
source§impl BlockIdFlag
impl BlockIdFlag
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.
sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for BlockIdFlag
impl Clone for BlockIdFlag
source§fn clone(&self) -> BlockIdFlag
fn clone(&self) -> BlockIdFlag
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 BlockIdFlag
impl Debug for BlockIdFlag
source§impl Default for BlockIdFlag
impl Default for BlockIdFlag
source§fn default() -> BlockIdFlag
fn default() -> BlockIdFlag
Returns the “default value” for a type. Read more
source§impl From<BlockIdFlag> for i32
impl From<BlockIdFlag> for i32
source§fn from(value: BlockIdFlag) -> i32
fn from(value: BlockIdFlag) -> i32
Converts to this type from the input type.
source§impl Hash for BlockIdFlag
impl Hash for BlockIdFlag
source§impl Ord for BlockIdFlag
impl Ord for BlockIdFlag
source§fn cmp(&self, other: &BlockIdFlag) -> Ordering
fn cmp(&self, other: &BlockIdFlag) -> 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 for BlockIdFlag
impl PartialEq for BlockIdFlag
source§fn eq(&self, other: &BlockIdFlag) -> bool
fn eq(&self, other: &BlockIdFlag) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for BlockIdFlag
impl PartialOrd for BlockIdFlag
source§fn partial_cmp(&self, other: &BlockIdFlag) -> Option<Ordering>
fn partial_cmp(&self, other: &BlockIdFlag) -> 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 moresource§impl TryFrom<i32> for BlockIdFlag
impl TryFrom<i32> for BlockIdFlag
§type Error = DecodeError
type Error = DecodeError
The type returned in the event of a conversion error.
source§fn try_from(value: i32) -> Result<BlockIdFlag, DecodeError>
fn try_from(value: i32) -> Result<BlockIdFlag, DecodeError>
Performs the conversion.
impl Copy for BlockIdFlag
impl Eq for BlockIdFlag
impl StructuralEq for BlockIdFlag
impl StructuralPartialEq for BlockIdFlag
Auto Trait Implementations§
impl RefUnwindSafe for BlockIdFlag
impl Send for BlockIdFlag
impl Sync for BlockIdFlag
impl Unpin for BlockIdFlag
impl UnwindSafe for BlockIdFlag
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moresource§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