pub struct DbAccountInfo {
pub pubkey: Vec<u8>,
pub lamports: i64,
pub owner: Vec<u8>,
pub executable: bool,
pub rent_epoch: i64,
pub data: Vec<u8>,
pub slot: i64,
pub write_version: i64,
pub txn_signature: Option<Vec<u8>>,
}Fields§
§pubkey: Vec<u8>§lamports: i64§owner: Vec<u8>§executable: bool§rent_epoch: i64§data: Vec<u8>§slot: i64§write_version: i64§txn_signature: Option<Vec<u8>>Trait Implementations§
source§impl Clone for DbAccountInfo
impl Clone for DbAccountInfo
source§fn clone(&self) -> DbAccountInfo
fn clone(&self) -> DbAccountInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DbAccountInfo
impl Debug for DbAccountInfo
source§impl PartialEq<DbAccountInfo> for DbAccountInfo
impl PartialEq<DbAccountInfo> for DbAccountInfo
source§fn eq(&self, other: &DbAccountInfo) -> bool
fn eq(&self, other: &DbAccountInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl ReadableAccountInfo for DbAccountInfo
impl ReadableAccountInfo for DbAccountInfo
impl Eq for DbAccountInfo
impl StructuralPartialEq for DbAccountInfo
Auto Trait Implementations§
impl RefUnwindSafe for DbAccountInfo
impl Send for DbAccountInfo
impl Sync for DbAccountInfo
impl Unpin for DbAccountInfo
impl UnwindSafe for DbAccountInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.