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
impl Copy for CollectedInfo
impl Eq for CollectedInfo
impl StructuralPartialEq for CollectedInfo
Auto Trait Implementations§
impl Freeze for CollectedInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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