pub struct AccountInfo<'a> {
    pub key: &'a Pubkey,
    pub is_signer: bool,
    pub is_writable: bool,
    pub lamports: Rc<RefCell<&'a mut u64>>,
    pub data: Rc<RefCell<&'a mut [u8]>>,
    pub owner: &'a Pubkey,
    pub executable: bool,
    pub rent_epoch: Epoch,
}
Expand description

Account information

Fields§

§key: &'a Pubkey

Public key of the account

§is_signer: bool

Was the transaction signed by this account’s public key?

§is_writable: bool

Is the account writable?

§lamports: Rc<RefCell<&'a mut u64>>

The lamports in the account. Modifiable by programs.

§data: Rc<RefCell<&'a mut [u8]>>

The data held in this account. Modifiable by programs.

§owner: &'a Pubkey

Program that owns this account

§executable: bool

This account’s data contains a loaded program (and is now read-only)

§rent_epoch: Epoch

The epoch at which this account will next owe rent

Implementations§

source§

impl<'a> AccountInfo<'a>

source

pub fn signer_key(&self) -> Option<&Pubkey>

source

pub fn unsigned_key(&self) -> &Pubkey

source

pub fn lamports(&self) -> u64

source

pub fn try_lamports(&self) -> Result<u64, ProgramError>

source

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.

source

pub fn data_len(&self) -> usize

source

pub fn try_data_len(&self) -> Result<usize, ProgramError>

source

pub fn data_is_empty(&self) -> bool

source

pub fn try_data_is_empty(&self) -> Result<bool, ProgramError>

source

pub fn try_borrow_lamports(&self) -> Result<Ref<'_, &mut u64>, ProgramError>

source

pub fn try_borrow_mut_lamports(
    &self
) -> Result<RefMut<'_, &'a mut u64>, ProgramError>

source

pub fn try_borrow_data(&self) -> Result<Ref<'_, &mut [u8]>, ProgramError>

source

pub fn try_borrow_mut_data(
    &self
) -> Result<RefMut<'_, &'a mut [u8]>, ProgramError>

source

pub fn realloc(&self, new_len: usize, zero_init: bool) -> Result<(), ProgramError>

Realloc the account’s data and optionally zero-initialize the new memory.

Note: Account data can be increased within a single call by up to solana_program::entrypoint::MAX_PERMITTED_DATA_INCREASE bytes.

Note: Memory used to grow is already zero-initialized upon program entrypoint and re-zeroing it wastes compute units. If within the same call a program reallocs from larger to smaller and back to larger again the new space could contain stale data. Pass true for zero_init in this case, otherwise compute units will be wasted re-zero-initializing.

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.

source

pub fn assign(&self, new_owner: &Pubkey)

source

pub fn new(
    key: &'a Pubkey,
    is_signer: bool,
    is_writable: bool,
    lamports: &'a mut u64,
    data: &'a mut [u8],
    owner: &'a Pubkey,
    executable: bool,
    rent_epoch: Epoch
) -> Self

source

pub fn deserialize_data<T: DeserializeOwned>(&self) -> Result<T, Error>

source

pub fn serialize_data<T: Serialize>(&self, state: &T) -> Result<(), Error>

Trait Implementations§

source§

impl<'a> AsRef<AccountInfo<'a>> for AccountInfo<'a>

source§

fn as_ref(&self) -> &AccountInfo<'a>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'a> Clone for AccountInfo<'a>

source§

fn clone(&self) -> AccountInfo<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for AccountInfo<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, T: IntoAccountInfo<'a>> From<T> for AccountInfo<'a>

source§

fn from(src: T) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for AccountInfo<'a>

§

impl<'a> !Send for AccountInfo<'a>

§

impl<'a> !Sync for AccountInfo<'a>

§

impl<'a> Unpin for AccountInfo<'a>

§

impl<'a> !UnwindSafe for AccountInfo<'a>

Blanket Implementations§

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere
    T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V