pub struct InsertSort<T> { /* private fields */ }
Expand description
Insert sort
Trait Implementations§
Source§impl<T: Debug> Debug for InsertSort<T>
impl<T: Debug> Debug for InsertSort<T>
Source§impl<T> From<Vec<T>> for InsertSort<T>
impl<T> From<Vec<T>> for InsertSort<T>
Source§impl<T: PartialOrd + Clone> Sort<T> for InsertSort<T>
impl<T: PartialOrd + Clone> Sort<T> for InsertSort<T>
Auto Trait Implementations§
impl<T> Freeze for InsertSort<T>
impl<T> RefUnwindSafe for InsertSort<T>where
T: RefUnwindSafe,
impl<T> Send for InsertSort<T>where
T: Send,
impl<T> Sync for InsertSort<T>where
T: Sync,
impl<T> Unpin for InsertSort<T>where
T: Unpin,
impl<T> UnwindSafe for InsertSort<T>where
T: UnwindSafe,
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