Struct solana_accounts_db::rent_collector::CollectedInfo
source · pub struct CollectedInfo {
pub rent_amount: u64,
pub account_data_len_reclaimed: u64,
}
Expand description
Information computed during rent collection
Fields§
§rent_amount: u64
Amount of rent collected from account
account_data_len_reclaimed: u64
Size of data reclaimed from account (happens when account’s lamports go to zero)
Trait Implementations§
source§impl Add for CollectedInfo
impl Add for CollectedInfo
source§impl AddAssign for CollectedInfo
impl AddAssign for CollectedInfo
source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moresource§impl Clone for CollectedInfo
impl Clone for CollectedInfo
source§fn clone(&self) -> CollectedInfo
fn clone(&self) -> CollectedInfo
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 CollectedInfo
impl Debug for CollectedInfo
source§impl Default for CollectedInfo
impl Default for CollectedInfo
source§fn default() -> CollectedInfo
fn default() -> CollectedInfo
Returns the “default value” for a type. Read more
source§impl PartialEq for CollectedInfo
impl PartialEq for CollectedInfo
source§fn eq(&self, other: &CollectedInfo) -> bool
fn eq(&self, other: &CollectedInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CollectedInfo
impl Eq for CollectedInfo
impl StructuralPartialEq for CollectedInfo
Auto Trait Implementations§
impl RefUnwindSafe for CollectedInfo
impl Send for CollectedInfo
impl Sync for CollectedInfo
impl Unpin for CollectedInfo
impl UnwindSafe for CollectedInfo
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.