Struct switchboard_solana::prelude::Sysvar
pub struct Sysvar<'info, T>where
T: Sysvar,{ /* private fields */ }
Expand description
Type validating that the account is a sysvar and deserializing it.
If possible, sysvars should not be used via accounts
but by using the get
function on the desired sysvar. This is because using get
does not run the risk of Anchor having a bug in its Sysvar
type
and using get
also decreases tx size, making space for other
accounts that cannot be requested via syscall.
§Example
ⓘ
// OK - via account in the account validation struct
#[derive(Accounts)]
pub struct Example<'info> {
pub clock: Sysvar<'info, Clock>
}
// BETTER - via syscall in the instruction function
fn better(ctx: Context<Better>) -> Result<()> {
let clock = Clock::get()?;
}
Implementations§
§impl<'info, T> Sysvar<'info, T>where
T: Sysvar,
impl<'info, T> Sysvar<'info, T>where
T: Sysvar,
pub fn from_account_info( acc_info: &'info AccountInfo<'info> ) -> Result<Sysvar<'info, T>, Error>
Trait Implementations§
§impl<'info, B, T> Accounts<'info, B> for Sysvar<'info, T>where
T: Sysvar,
impl<'info, B, T> Accounts<'info, B> for Sysvar<'info, T>where
T: Sysvar,
§fn try_accounts(
_program_id: &Pubkey,
accounts: &mut &'info [AccountInfo<'info>],
_ix_data: &[u8],
_bumps: &mut B,
_reallocs: &mut BTreeSet<Pubkey>
) -> Result<Sysvar<'info, T>, Error>
fn try_accounts( _program_id: &Pubkey, accounts: &mut &'info [AccountInfo<'info>], _ix_data: &[u8], _bumps: &mut B, _reallocs: &mut BTreeSet<Pubkey> ) -> Result<Sysvar<'info, T>, Error>
Returns the validated accounts struct. What constitutes “valid” is
program dependent. However, users of these types should never have to
worry about account substitution attacks. For example, if a program
expects a
Mint
account from the SPL token program in a particular
field, then it should be impossible for this method to return Ok
if
any other account type is given–from the SPL token program or elsewhere. Read more§impl<'info, T> AccountsExit<'info> for Sysvar<'info, T>where
T: Sysvar,
impl<'info, T> AccountsExit<'info> for Sysvar<'info, T>where
T: Sysvar,
§impl<'info, T> AsRef<AccountInfo<'info>> for Sysvar<'info, T>where
T: Sysvar,
impl<'info, T> AsRef<AccountInfo<'info>> for Sysvar<'info, T>where
T: Sysvar,
§fn as_ref(&self) -> &AccountInfo<'info>
fn as_ref(&self) -> &AccountInfo<'info>
Converts this type into a shared reference of the (usually inferred) input type.
§impl<'info, T> ToAccountInfos<'info> for Sysvar<'info, T>where
T: Sysvar,
impl<'info, T> ToAccountInfos<'info> for Sysvar<'info, T>where
T: Sysvar,
fn to_account_infos(&self) -> Vec<AccountInfo<'info>>
§impl<'info, T> ToAccountMetas for Sysvar<'info, T>where
T: Sysvar,
impl<'info, T> ToAccountMetas for Sysvar<'info, T>where
T: Sysvar,
§fn to_account_metas(&self, _is_signer: Option<bool>) -> Vec<AccountMeta>
fn to_account_metas(&self, _is_signer: Option<bool>) -> Vec<AccountMeta>
is_signer
is given as an optional override for the signer meta field.
This covers the edge case when a program-derived-address needs to relay
a transaction from a client to another program but sign the transaction
before the relay. The client cannot mark the field as a signer, and so
we have to override the is_signer meta field given by the client.Auto Trait Implementations§
impl<'info, T> !RefUnwindSafe for Sysvar<'info, T>
impl<'info, T> !Send for Sysvar<'info, T>
impl<'info, T> !Sync for Sysvar<'info, T>
impl<'info, T> Unpin for Sysvar<'info, T>where
T: Unpin,
impl<'info, T> !UnwindSafe for Sysvar<'info, T>
Blanket Implementations§
§impl<T, A, P> Access<T> for P
impl<T, A, P> Access<T> for P
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
§impl<'info, T> Lamports<'info> for Twhere
T: AsRef<AccountInfo<'info>>,
impl<'info, T> Lamports<'info> for Twhere
T: AsRef<AccountInfo<'info>>,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<Container> Signer for Containerwhere
Container: Deref<Target = impl Signer>,
impl<Container> Signer for Containerwhere
Container: Deref<Target = impl Signer>,
§fn pubkey(&self) -> Pubkey
fn pubkey(&self) -> Pubkey
Infallibly gets the implementor’s public key. Returns the all-zeros
Pubkey
if the implementor has none.§fn try_pubkey(&self) -> Result<Pubkey, SignerError>
fn try_pubkey(&self) -> Result<Pubkey, SignerError>
Fallibly gets the implementor’s public key
§fn sign_message(&self, message: &[u8]) -> Signature
fn sign_message(&self, message: &[u8]) -> Signature
Infallibly produces an Ed25519 signature over the provided
message
bytes. Returns the all-zeros Signature
if signing is not possible.§fn try_sign_message(&self, message: &[u8]) -> Result<Signature, SignerError>
fn try_sign_message(&self, message: &[u8]) -> Result<Signature, SignerError>
Fallibly produces an Ed25519 signature over the provided
message
bytes.§fn is_interactive(&self) -> bool
fn is_interactive(&self) -> bool
Whether the implementation requires user interaction to sign