pub enum SysvarAccountType {
Clock(UiClock),
EpochSchedule(EpochSchedule),
Fees(UiFees),
RecentBlockhashes(Vec<UiRecentBlockhashesEntry>),
Rent(UiRent),
Rewards(UiRewards),
SlotHashes(Vec<UiSlotHashEntry>),
SlotHistory(UiSlotHistory),
StakeHistory(Vec<UiStakeHistoryEntry>),
}
Variants§
Clock(UiClock)
EpochSchedule(EpochSchedule)
Fees(UiFees)
RecentBlockhashes(Vec<UiRecentBlockhashesEntry>)
Rent(UiRent)
Rewards(UiRewards)
SlotHashes(Vec<UiSlotHashEntry>)
SlotHistory(UiSlotHistory)
StakeHistory(Vec<UiStakeHistoryEntry>)
Trait Implementations§
source§impl Debug for SysvarAccountType
impl Debug for SysvarAccountType
source§impl<'de> Deserialize<'de> for SysvarAccountType
impl<'de> Deserialize<'de> for SysvarAccountType
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<SysvarAccountType> for SysvarAccountType
impl PartialEq<SysvarAccountType> for SysvarAccountType
source§fn eq(&self, other: &SysvarAccountType) -> bool
fn eq(&self, other: &SysvarAccountType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.