Enum solana_sdk::rent::RentDue
source · pub enum RentDue {
Exempt,
Paying(u64),
}
Expand description
Enumerate return values from Rent::due()
Variants§
Exempt
Used to indicate the account is rent exempt
Paying(u64)
The account owes rent, and the amount is the field
Implementations§
Trait Implementations§
source§impl PartialEq for RentDue
impl PartialEq for RentDue
impl Copy for RentDue
impl Eq for RentDue
impl StructuralEq for RentDue
impl StructuralPartialEq for RentDue
Auto Trait Implementations§
impl RefUnwindSafe for RentDue
impl Send for RentDue
impl Sync for RentDue
impl Unpin for RentDue
impl UnwindSafe for RentDue
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