pub struct TooLongSliceForPermutation {
pub length: usize,
pub max: usize,
}Expand description
Tried to use a slice longer than self.max in the context of a permutation on self.max objects
Fields§
§length: usize§max: usizeTrait Implementations§
Source§impl Clone for TooLongSliceForPermutation
impl Clone for TooLongSliceForPermutation
Source§fn clone(&self) -> TooLongSliceForPermutation
fn clone(&self) -> TooLongSliceForPermutation
Returns a duplicate 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 TooLongSliceForPermutation
impl Debug for TooLongSliceForPermutation
Source§impl Hash for TooLongSliceForPermutation
impl Hash for TooLongSliceForPermutation
impl Copy for TooLongSliceForPermutation
impl Eq for TooLongSliceForPermutation
impl StructuralPartialEq for TooLongSliceForPermutation
Auto Trait Implementations§
impl Freeze for TooLongSliceForPermutation
impl RefUnwindSafe for TooLongSliceForPermutation
impl Send for TooLongSliceForPermutation
impl Sync for TooLongSliceForPermutation
impl Unpin for TooLongSliceForPermutation
impl UnwindSafe for TooLongSliceForPermutation
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