pub enum HellevatorStatus<'a> {
NotEntered,
NotAvailable,
RewardClaimable,
Active(&'a Hellevator),
}Variants§
NotEntered
The event is ongoing, but you have to send a HellevatorEnter command
to start using it
NotAvailable
The event is currently not available
RewardClaimable
The event has ended, but you can still claim the final reward
Active(&'a Hellevator)
A reference to the
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for HellevatorStatus<'a>
impl<'a> RefUnwindSafe for HellevatorStatus<'a>
impl<'a> Send for HellevatorStatus<'a>
impl<'a> Sync for HellevatorStatus<'a>
impl<'a> Unpin for HellevatorStatus<'a>
impl<'a> UnwindSafe for HellevatorStatus<'a>
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