pub enum MinecraftOperation {
Assignment,
Addition,
Subtraction,
Multiplication,
Division,
Modulus,
Swapping,
Minimum,
Maximum,
}
Variants§
Trait Implementations§
source§impl Clone for MinecraftOperation
impl Clone for MinecraftOperation
source§fn clone(&self) -> MinecraftOperation
fn clone(&self) -> MinecraftOperation
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 MinecraftOperation
impl Debug for MinecraftOperation
source§impl PartialEq<MinecraftOperation> for MinecraftOperation
impl PartialEq<MinecraftOperation> for MinecraftOperation
source§fn eq(&self, other: &MinecraftOperation) -> bool
fn eq(&self, other: &MinecraftOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for MinecraftOperation
impl Eq for MinecraftOperation
impl StructuralEq for MinecraftOperation
impl StructuralPartialEq for MinecraftOperation
Auto Trait Implementations§
impl RefUnwindSafe for MinecraftOperation
impl Send for MinecraftOperation
impl Sync for MinecraftOperation
impl Unpin for MinecraftOperation
impl UnwindSafe for MinecraftOperation
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.