pub enum Generators {
Default,
Custom(CustomGenerators),
}Variants§
Default
Custom(CustomGenerators)
Implementations§
Source§impl Generators
impl Generators
pub fn enumerate_moves_for_kpuzzle(&self, kpuzzle: &KPuzzle) -> Vec<Move>
Trait Implementations§
Source§impl Clone for Generators
impl Clone for Generators
Source§fn clone(&self) -> Generators
fn clone(&self) -> Generators
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Generators
impl RefUnwindSafe for Generators
impl Send for Generators
impl Sync for Generators
impl Unpin for Generators
impl UnsafeUnpin for Generators
impl UnwindSafe for Generators
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