Struct solana_sdk::account_info::AccountInfo
source · [−]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: u64,
}
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: u64
The epoch at which this account will next owe rent
Implementations
sourceimpl<'a> AccountInfo<'a>
impl<'a> AccountInfo<'a>
pub fn signer_key(&self) -> Option<&Pubkey>
pub fn unsigned_key(&self) -> &Pubkey
pub fn lamports(&self) -> u64
pub fn try_lamports(&self) -> Result<u64, ProgramError>
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>
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: u64
) -> AccountInfo<'a>
pub fn deserialize_data<T>(&self) -> Result<T, Box<ErrorKind, Global>> where
T: DeserializeOwned,
pub fn serialize_data<T>(&self, state: &T) -> Result<(), Box<ErrorKind, Global>> where
T: Serialize,
Trait Implementations
sourceimpl<'a> AsRef<AccountInfo<'a>> for AccountInfo<'a>
impl<'a> AsRef<AccountInfo<'a>> for AccountInfo<'a>
sourcepub fn as_ref(&self) -> &AccountInfo<'a>
pub fn as_ref(&self) -> &AccountInfo<'a>
Performs the conversion.
sourceimpl<'a> Clone for AccountInfo<'a>
impl<'a> Clone for AccountInfo<'a>
sourcepub fn clone(&self) -> AccountInfo<'a>
pub fn clone(&self) -> AccountInfo<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for AccountInfo<'a>
impl<'a> Debug for AccountInfo<'a>
sourceimpl<'a, T> From<T> for AccountInfo<'a> where
T: IntoAccountInfo<'a>,
impl<'a, T> From<T> for AccountInfo<'a> where
T: IntoAccountInfo<'a>,
sourcepub fn from(src: T) -> AccountInfo<'a>
pub fn from(src: T) -> AccountInfo<'a>
Performs the conversion.
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
sourceimpl<T> AbiExample for T
impl<T> AbiExample for T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more