Enum human_program::vest::VestingResult
source · pub enum VestingResult {
Vest(u64),
PeriodVested,
Completed,
}
Variants§
Vest(u64)
PeriodVested
Already vested in this period
Completed
Vesting completed (vested_periods == VESTING_PARTS)
Trait Implementations§
source§impl Debug for VestingResult
impl Debug for VestingResult
source§impl PartialEq<VestingResult> for VestingResult
impl PartialEq<VestingResult> for VestingResult
source§fn eq(&self, other: &VestingResult) -> bool
fn eq(&self, other: &VestingResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for VestingResult
impl StructuralEq for VestingResult
impl StructuralPartialEq for VestingResult
Auto Trait Implementations§
impl RefUnwindSafe for VestingResult
impl Send for VestingResult
impl Sync for VestingResult
impl Unpin for VestingResult
impl UnwindSafe for VestingResult
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