pub enum SortedError {
NotSorted,
}Expand description
An Error indicating that a [T]/[T; N] could not be turned into a
SortedSlice/Sorted because it was not sorted according to T: PartialOrd.
Variants§
NotSorted
Indicates that a slice/array was not sorted.
Trait Implementations§
Source§impl Debug for SortedError
impl Debug for SortedError
Source§impl Display for SortedError
impl Display for SortedError
Source§impl Error for SortedError
impl Error for SortedError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SortedError
impl RefUnwindSafe for SortedError
impl Send for SortedError
impl Sync for SortedError
impl Unpin for SortedError
impl UnwindSafe for SortedError
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