pub enum PuzzleDestination {
Ephemeral(LiteralType, u16),
Register(LiteralType),
}
Variants§
Ephemeral(LiteralType, u16)
Register(LiteralType)
Implementations§
Source§impl PuzzleDestination
impl PuzzleDestination
Sourcepub fn is_ephemeral(&self) -> bool
pub fn is_ephemeral(&self) -> bool
Returns whether or not the puzzle operand is an ephemeral register.
Sourcepub fn is_register(&self) -> bool
pub fn is_register(&self) -> bool
Returns whether or not the puzzle operand is a register.
Trait Implementations§
Source§impl Clone for PuzzleDestination
impl Clone for PuzzleDestination
Source§fn clone(&self) -> PuzzleDestination
fn clone(&self) -> PuzzleDestination
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 PuzzleDestination
impl Debug for PuzzleDestination
Source§impl Hash for PuzzleDestination
impl Hash for PuzzleDestination
Source§impl PartialEq for PuzzleDestination
impl PartialEq for PuzzleDestination
impl Eq for PuzzleDestination
impl StructuralPartialEq for PuzzleDestination
Auto Trait Implementations§
impl Freeze for PuzzleDestination
impl RefUnwindSafe for PuzzleDestination
impl Send for PuzzleDestination
impl Sync for PuzzleDestination
impl Unpin for PuzzleDestination
impl UnwindSafe for PuzzleDestination
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more