pub struct UncheckedAccount<'info>(/* private fields */);Expand description
Explicit wrapper for AccountInfo types to emphasize that no checks are performed
Implementations§
Source§impl<'info> UncheckedAccount<'info>
impl<'info> UncheckedAccount<'info>
pub fn try_from(acc_info: &'info AccountInfo<'info>) -> Self
Methods from Deref<Target = AccountInfo<'info>>§
pub fn signer_key(&self) -> Option<&Address>
pub fn unsigned_key(&self) -> &Address
pub fn lamports(&self) -> u64
pub fn try_lamports(&self) -> Result<u64, ProgramError>
Sourcepub unsafe fn original_data_len(&self) -> usize
pub unsafe fn original_data_len(&self) -> usize
Return the account’s original data length when it was serialized for the current program invocation.
§Safety
This method assumes that the original data length was serialized as a u32 integer in the 4 bytes immediately preceding the serialized account key.
pub fn data_len(&self) -> usize
pub fn try_data_len(&self) -> Result<usize, ProgramError>
pub fn data_is_empty(&self) -> bool
pub fn try_data_is_empty(&self) -> Result<bool, ProgramError>
pub fn try_borrow_lamports(&self) -> Result<Ref<'_, &mut u64>, ProgramError>
pub fn try_borrow_mut_lamports( &self, ) -> Result<RefMut<'_, &'a mut u64>, ProgramError>
pub fn try_borrow_data(&self) -> Result<Ref<'_, &mut [u8]>, ProgramError>
pub fn try_borrow_mut_data( &self, ) -> Result<RefMut<'_, &'a mut [u8]>, ProgramError>
Sourcepub fn resize(&self, new_len: usize) -> Result<(), ProgramError>
pub fn resize(&self, new_len: usize) -> Result<(), ProgramError>
Resize the account’s data: Either truncating or zero extending.
Note: Account data can be increased within a single call by up to
solana_program::entrypoint::MAX_PERMITTED_DATA_INCREASE bytes.
§Safety
This method makes assumptions about the layout and location of memory
referenced by AccountInfo fields. It should only be called for
instances of AccountInfo that were created by the runtime and received
in the process_instruction entrypoint of a program.
pub fn assign(&self, new_owner: &Address)
Trait Implementations§
Source§impl<'info, B> Accounts<'info, B> for UncheckedAccount<'info>
impl<'info, B> Accounts<'info, B> for UncheckedAccount<'info>
Source§fn try_accounts(
_program_id: &Pubkey,
accounts: &mut &'info [AccountInfo<'info>],
_ix_data: &[u8],
_bumps: &mut B,
_reallocs: &mut BTreeSet<Pubkey>,
) -> Result<Self>
fn try_accounts( _program_id: &Pubkey, accounts: &mut &'info [AccountInfo<'info>], _ix_data: &[u8], _bumps: &mut B, _reallocs: &mut BTreeSet<Pubkey>, ) -> Result<Self>
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 moreSource§impl<'info> AccountsExit<'info> for UncheckedAccount<'info>
impl<'info> AccountsExit<'info> for UncheckedAccount<'info>
Source§impl<'info> AsRef<AccountInfo<'info>> for UncheckedAccount<'info>
impl<'info> AsRef<AccountInfo<'info>> for UncheckedAccount<'info>
Source§fn as_ref(&self) -> &AccountInfo<'info>
fn as_ref(&self) -> &AccountInfo<'info>
Source§impl<'info> Clone for UncheckedAccount<'info>
impl<'info> Clone for UncheckedAccount<'info>
Source§fn clone(&self) -> UncheckedAccount<'info>
fn clone(&self) -> UncheckedAccount<'info>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'info> Debug for UncheckedAccount<'info>
impl<'info> Debug for UncheckedAccount<'info>
Source§impl<'info> Deref for UncheckedAccount<'info>
impl<'info> Deref for UncheckedAccount<'info>
Source§impl<'info> ToAccountInfos<'info> for UncheckedAccount<'info>
impl<'info> ToAccountInfos<'info> for UncheckedAccount<'info>
fn to_account_infos(&self) -> Vec<AccountInfo<'info>>
Source§impl ToAccountMetas for UncheckedAccount<'_>
impl ToAccountMetas for UncheckedAccount<'_>
Source§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.