solana_accounts_db::tiered_storage::readable

Struct TieredReadableAccount

source
pub struct TieredReadableAccount<'accounts_file, M: TieredAccountMeta> {
    pub meta: &'accounts_file M,
    pub address: &'accounts_file Pubkey,
    pub owner: &'accounts_file Pubkey,
    pub index: usize,
    pub account_block: &'accounts_file [u8],
}
Expand description

The struct that offers read APIs for accessing a TieredAccount.

Fields§

§meta: &'accounts_file M

TieredAccountMeta

§address: &'accounts_file Pubkey

The address of the account

§owner: &'accounts_file Pubkey

The address of the account owner

§index: usize

The index for accessing the account inside its belonging AccountsFile

§account_block: &'accounts_file [u8]

The account block that contains this account. Note that this account block may be shared with other accounts.

Implementations§

source§

impl<'accounts_file, M: TieredAccountMeta> TieredReadableAccount<'accounts_file, M>

source

pub fn address(&self) -> &'accounts_file Pubkey

Returns the address of this account.

source

pub fn hash(&self) -> Option<&'accounts_file AccountHash>

Returns the hash of this account.

source

pub fn index(&self) -> usize

Returns the index to this account in its AccountsFile.

source

pub fn data(&self) -> &'accounts_file [u8]

Returns the data associated to this account.

Trait Implementations§

source§

impl<'accounts_file, M: Debug + TieredAccountMeta> Debug for TieredReadableAccount<'accounts_file, M>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'accounts_file, M: PartialEq + TieredAccountMeta> PartialEq for TieredReadableAccount<'accounts_file, M>

source§

fn eq(&self, other: &TieredReadableAccount<'accounts_file, M>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'accounts_file, M: TieredAccountMeta> ReadableAccount for TieredReadableAccount<'accounts_file, M>

source§

fn lamports(&self) -> u64

Returns the balance of the lamports of this account.

source§

fn owner(&self) -> &'accounts_file Pubkey

Returns the address of the owner of this account.

source§

fn executable(&self) -> bool

Returns true if the data associated to this account is executable.

Temporarily unimplemented!() as program runtime v2 will use a different API for executable.

source§

fn rent_epoch(&self) -> Epoch

Returns the epoch that this account will next owe rent by parsing the specified account block. Epoch::MAX will be returned if the account is rent-exempt.

source§

fn data(&self) -> &'accounts_file [u8]

Returns the data associated to this account.

source§

fn to_account_shared_data(&self) -> AccountSharedData

source§

impl<'accounts_file, M: Eq + TieredAccountMeta> Eq for TieredReadableAccount<'accounts_file, M>

source§

impl<'accounts_file, M: TieredAccountMeta> StructuralPartialEq for TieredReadableAccount<'accounts_file, M>

Auto Trait Implementations§

§

impl<'accounts_file, M> Freeze for TieredReadableAccount<'accounts_file, M>

§

impl<'accounts_file, M> RefUnwindSafe for TieredReadableAccount<'accounts_file, M>
where M: RefUnwindSafe,

§

impl<'accounts_file, M> Send for TieredReadableAccount<'accounts_file, M>
where M: Sync,

§

impl<'accounts_file, M> Sync for TieredReadableAccount<'accounts_file, M>
where M: Sync,

§

impl<'accounts_file, M> Unpin for TieredReadableAccount<'accounts_file, M>

§

impl<'accounts_file, M> UnwindSafe for TieredReadableAccount<'accounts_file, M>
where M: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

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

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

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

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

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

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

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

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more