pub enum TrialSpawnerState {
Inactive = 0,
WaitingForPlayers = 1,
Active = 2,
WaitingForRewardEjection = 3,
EjectingReward = 4,
Cooldown = 5,
}
Variants§
Inactive = 0
WaitingForPlayers = 1
Active = 2
WaitingForRewardEjection = 3
EjectingReward = 4
Cooldown = 5
Trait Implementations§
Source§impl Clone for TrialSpawnerState
impl Clone for TrialSpawnerState
Source§fn clone(&self) -> TrialSpawnerState
fn clone(&self) -> TrialSpawnerState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TrialSpawnerState
impl Debug for TrialSpawnerState
Source§impl From<u32> for TrialSpawnerState
impl From<u32> for TrialSpawnerState
Source§impl PartialEq for TrialSpawnerState
impl PartialEq for TrialSpawnerState
Source§impl Property for TrialSpawnerState
impl Property for TrialSpawnerState
type Value = TrialSpawnerState
fn try_from_block_state(block_state: BlockState) -> Option<Self::Value>
impl Copy for TrialSpawnerState
impl Eq for TrialSpawnerState
impl StructuralPartialEq for TrialSpawnerState
Auto Trait Implementations§
impl Freeze for TrialSpawnerState
impl RefUnwindSafe for TrialSpawnerState
impl Send for TrialSpawnerState
impl Sync for TrialSpawnerState
impl Unpin for TrialSpawnerState
impl UnwindSafe for TrialSpawnerState
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)