[][src]Struct solana_runtime::append_vec::AccountMeta

pub struct AccountMeta {
    pub lamports: u64,
    pub owner: Pubkey,
    pub executable: bool,
    pub rent_epoch: Epoch,
}

This struct will be backed by mmaped and snapshotted data files. So the data layout must be stable and consistent across the entire cluster!

Fields

lamports: u64

lamports in the account

owner: Pubkey

the program that owns this account. If executable, the program that loads 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

Trait Implementations

impl Clone for AccountMeta[src]

impl Debug for AccountMeta[src]

impl Default for AccountMeta[src]

impl<'de> Deserialize<'de> for AccountMeta[src]

impl Eq for AccountMeta[src]

impl PartialEq<AccountMeta> for AccountMeta[src]

impl Serialize for AccountMeta[src]

impl StructuralEq for AccountMeta[src]

impl StructuralPartialEq for AccountMeta[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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