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§
impl Copy for RentDue
impl Eq for RentDue
impl StructuralPartialEq for RentDue
Auto Trait Implementations§
impl Freeze for RentDue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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