Struct IntoIterSorted

struct IntoIterSorted<T, A: Allocator = crate::alloc::Global> { ... }

Implementations

impl<T, A: Allocator> IntoIterSorted<T, A>

fn allocator(self: &Self) -> &A

Returns a reference to the underlying allocator.

impl<I> IntoIterator for IntoIterSorted<T, A>

fn into_iter(self: Self) -> I

impl<T> Any for IntoIterSorted<T, A>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for IntoIterSorted<T, A>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for IntoIterSorted<T, A>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for IntoIterSorted<T, A>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for IntoIterSorted<T, A>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for IntoIterSorted<T, A>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, A> Freeze for IntoIterSorted<T, A>

impl<T, A> RefUnwindSafe for IntoIterSorted<T, A>

impl<T, A> Send for IntoIterSorted<T, A>

impl<T, A> Sync for IntoIterSorted<T, A>

impl<T, A> Unpin for IntoIterSorted<T, A>

impl<T, A> UnwindSafe for IntoIterSorted<T, A>

impl<T, U> Into for IntoIterSorted<T, A>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for IntoIterSorted<T, A>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for IntoIterSorted<T, A>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>

impl<T: $crate::clone::Clone, A: $crate::clone::Clone + Allocator> Clone for IntoIterSorted<T, A>

fn clone(self: &Self) -> IntoIterSorted<T, A>

impl<T: $crate::fmt::Debug, A: $crate::fmt::Debug + Allocator> Debug for IntoIterSorted<T, A>

fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result

impl<T: Ord, A: Allocator> ExactSizeIterator for IntoIterSorted<T, A>

impl<T: Ord, A: Allocator> FusedIterator for IntoIterSorted<T, A>

impl<T: Ord, A: Allocator> Iterator for IntoIterSorted<T, A>

fn next(self: &mut Self) -> Option<T>
fn size_hint(self: &Self) -> (usize, Option<usize>)

impl<T: Ord, A: Allocator> TrustedLen for IntoIterSorted<T, A>