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<u16> for TrialSpawnerState
impl From<u16> for TrialSpawnerState
Source§fn from(value: BlockStateIntegerRepr) -> Self
fn from(value: BlockStateIntegerRepr) -> Self
Converts to this type from the input type.
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