pub trait SysvarId {
// Required methods
fn id() -> Pubkey;
fn check_id(pubkey: &Pubkey) -> bool;
}
Expand description
A type that holds sysvar data and has an associated sysvar Pubkey
.
Required Methods§
Object Safety§
This trait is not object safe.