pub trait ReadableAccount: Sized {
// Required methods
fn lamports(&self) -> u64;
fn data(&self) -> &[u8] ⓘ;
fn owner(&self) -> &Pubkey;
fn executable(&self) -> bool;
fn rent_epoch(&self) -> Epoch;
// Provided method
fn to_account_shared_data(&self) -> AccountSharedData { ... }
}
Required Methods§
fn lamports(&self) -> u64
fn data(&self) -> &[u8] ⓘ
fn owner(&self) -> &Pubkey
fn executable(&self) -> bool
fn rent_epoch(&self) -> Epoch
Provided Methods§
Object Safety§
This trait is not object safe.