pub enum PermutationGeneratorError {
TooManyElements,
SliceTooSmall,
}Variants§
Trait Implementations§
Source§impl Clone for PermutationGeneratorError
impl Clone for PermutationGeneratorError
Source§fn clone(&self) -> PermutationGeneratorError
fn clone(&self) -> PermutationGeneratorError
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 moreimpl Copy for PermutationGeneratorError
Source§impl Debug for PermutationGeneratorError
impl Debug for PermutationGeneratorError
impl Eq for PermutationGeneratorError
Source§impl Hash for PermutationGeneratorError
impl Hash for PermutationGeneratorError
Source§impl PartialEq for PermutationGeneratorError
impl PartialEq for PermutationGeneratorError
Source§fn eq(&self, other: &PermutationGeneratorError) -> bool
fn eq(&self, other: &PermutationGeneratorError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PermutationGeneratorError
Auto Trait Implementations§
impl Freeze for PermutationGeneratorError
impl RefUnwindSafe for PermutationGeneratorError
impl Send for PermutationGeneratorError
impl Sync for PermutationGeneratorError
impl Unpin for PermutationGeneratorError
impl UnsafeUnpin for PermutationGeneratorError
impl UnwindSafe for PermutationGeneratorError
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