AccountInfo

Struct AccountInfo 

Source
pub struct AccountInfo<'a> {
    pub key: &'a Pubkey,
    pub is_signer: bool,
    pub is_writable: bool,
    pub carats: 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?

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

The carats 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 carats(&self) -> u64

Source

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

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_carats(&self) -> Result<Ref<'_, &mut u64>, ProgramError>

Source

pub fn try_borrow_mut_carats( &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 new( key: &'a Pubkey, is_signer: bool, is_writable: bool, carats: &'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>(&mut 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 duplicate 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> Freeze for AccountInfo<'a>

§

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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V