pub struct InvalidPermutationError { /* private fields */ }
Expand description
An error which indicates that a permutation vector is invalid.
A permutation vector vec
is valid if and only if it contains one copy of every
index in the range 0..vec.len()
.
Trait Implementations§
Source§impl Debug for InvalidPermutationError
impl Debug for InvalidPermutationError
Auto Trait Implementations§
impl Freeze for InvalidPermutationError
impl RefUnwindSafe for InvalidPermutationError
impl Send for InvalidPermutationError
impl Sync for InvalidPermutationError
impl Unpin for InvalidPermutationError
impl UnwindSafe for InvalidPermutationError
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