[−][src]Struct solana_sdk::account::Account
An Account with data that is stored on chain
Fields
lamports: u64lamports in the account
data: Vec<u8>data held in this account
owner: Pubkeythe program that owns this account. If executable, the program that loads this account.
executable: boolthis account's data contains a loaded program (and is now read-only)
Methods
impl Account[src]
pub fn new(lamports: u64, space: usize, owner: &Pubkey) -> Account[src]
pub fn deserialize_data<T: DeserializeOwned>(&self) -> Result<T, Error>[src]
pub fn serialize_data<T: Serialize>(&mut self, state: &T) -> Result<(), Error>[src]
Trait Implementations
impl<T> State<T> for Account where
T: Serialize + DeserializeOwned, [src]
T: Serialize + DeserializeOwned,
fn state(&self) -> Result<T, InstructionError>[src]
fn set_state(&mut self, state: &T) -> Result<(), InstructionError>[src]
impl Eq for Account[src]
impl Clone for Account[src]
fn clone(&self) -> Account[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<Account> for Account[src]
impl Default for Account[src]
impl Debug for Account[src]
impl<'de> Deserialize<'de> for Account[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for Account[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Same for T
type Output = T
Should always be Self
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized,
T: InitializableFromZeroed + ?Sized,
fn clear(&mut self)
impl<T> InitializableFromZeroed for T where
T: Default,
T: Default,