solana_rent

Struct Rent

Source
#[repr(C)]
pub struct Rent { pub lamports_per_byte_year: u64, pub exemption_threshold: f64, pub burn_percent: u8, }
Expand description

Configuration of network rent.

Fields§

§lamports_per_byte_year: u64

Rental rate in lamports/byte-year.

§exemption_threshold: f64

Amount of time (in years) a balance must include rent for the account to be rent exempt.

§burn_percent: u8

The percentage of collected rent that is burned.

Valid values are in the range [0, 100]. The remaining percentage is distributed to validators.

Implementations§

Source§

impl Rent

Source

pub fn calculate_burn(&self, rent_collected: u64) -> (u64, u64)

Calculate how much rent to burn from the collected rent.

The first value returned is the amount burned. The second is the amount to distribute to validators.

Source

pub fn minimum_balance(&self, data_len: usize) -> u64

Minimum balance due for rent-exemption of a given account data size.

Source

pub fn is_exempt(&self, balance: u64, data_len: usize) -> bool

Whether a given balance and data length would be exempt.

Source

pub fn due(&self, balance: u64, data_len: usize, years_elapsed: f64) -> RentDue

Rent due on account’s data length with balance.

Source

pub fn due_amount(&self, data_len: usize, years_elapsed: f64) -> u64

Rent due for account that is known to be not exempt.

Source

pub fn free() -> Self

Creates a Rent that charges no lamports.

This is used for testing.

Source

pub fn with_slots_per_epoch(slots_per_epoch: u64) -> Self

Creates a Rent that is scaled based on the number of slots in an epoch.

This is used for testing.

Trait Implementations§

Source§

impl Clone for Rent

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Rent

Source§

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

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

impl Default for Rent

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Rent

Source§

fn eq(&self, other: &Rent) -> 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 StructuralPartialEq for Rent

Auto Trait Implementations§

§

impl Freeze for Rent

§

impl RefUnwindSafe for Rent

§

impl Send for Rent

§

impl Sync for Rent

§

impl Unpin for Rent

§

impl UnwindSafe for Rent

Blanket Implementations§

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<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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, 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.