Enum lighthouse_sdk::types::ClockField
source · pub enum ClockField {
Slot,
EpochStartTimestamp,
Epoch,
LeaderScheduleEpoch,
UnixTimestamp,
}Variants§
Trait Implementations§
source§impl BorshDeserialize for ClockField
impl BorshDeserialize for ClockField
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for ClockField
impl BorshSerialize for ClockField
source§impl Clone for ClockField
impl Clone for ClockField
source§fn clone(&self) -> ClockField
fn clone(&self) -> ClockField
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 ClockField
impl Debug for ClockField
source§impl EnumExt for ClockField
impl EnumExt for ClockField
source§impl Hash for ClockField
impl Hash for ClockField
source§impl PartialEq for ClockField
impl PartialEq for ClockField
source§fn eq(&self, other: &ClockField) -> bool
fn eq(&self, other: &ClockField) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for ClockField
impl PartialOrd for ClockField
source§fn partial_cmp(&self, other: &ClockField) -> Option<Ordering>
fn partial_cmp(&self, other: &ClockField) -> 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 Eq for ClockField
impl StructuralPartialEq for ClockField
Auto Trait Implementations§
impl Freeze for ClockField
impl RefUnwindSafe for ClockField
impl Send for ClockField
impl Sync for ClockField
impl Unpin for ClockField
impl UnwindSafe for ClockField
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