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
sourceimpl Debug for SysvarAccountType
impl Debug for SysvarAccountType
sourceimpl<'de> Deserialize<'de> for SysvarAccountType
impl<'de> Deserialize<'de> for SysvarAccountType
sourcefn 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
sourceimpl PartialEq<SysvarAccountType> for SysvarAccountType
impl PartialEq<SysvarAccountType> for SysvarAccountType
sourcefn eq(&self, other: &SysvarAccountType) -> bool
fn eq(&self, other: &SysvarAccountType) -> bool
sourceimpl Serialize for SysvarAccountType
impl Serialize for SysvarAccountType
impl StructuralPartialEq for SysvarAccountType
Auto Trait Implementations
impl RefUnwindSafe for SysvarAccountType
impl Send for SysvarAccountType
impl Sync for SysvarAccountType
impl Unpin for SysvarAccountType
impl UnwindSafe for SysvarAccountType
Blanket Implementations
impl<T> AbiEnumVisitor for Twhere
T: Serialize + ?Sized,
impl<T> AbiEnumVisitor for Twhere
T: Serialize + ?Sized,
default fn visit_for_abi(
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
impl<T> AbiEnumVisitor for Twhere
T: Serialize + AbiExample + ?Sized,
impl<T> AbiEnumVisitor for Twhere
T: Serialize + AbiExample + ?Sized,
default fn visit_for_abi(
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more