Struct PartitionState
pub(in ::slice::sort::unstable::quicksort) struct PartitionState<T> { pub(in ::slice::sort::unstable::quicksort) right: *mut T, pub(in ::slice::sort::unstable::quicksort) num_lt: usize, pub(in ::slice::sort::unstable::quicksort) gap: GapGuardRaw<T> }
Fields
right: *mut Tnum_lt: usizegap: GapGuardRaw<T>
Auto Trait Implementations
impl<T> !Send for PartitionState<T>
impl<T> !Sync for PartitionState<T>
impl<T> Freeze for PartitionState<T>
where
*mut T: Freeze,
GapGuardRaw<T>: Freeze,
impl<T> RefUnwindSafe for PartitionState<T>
where
*mut T: RefUnwindSafe,
GapGuardRaw<T>: RefUnwindSafe,
impl<T> Unpin for PartitionState<T>
where
*mut T: Unpin,
GapGuardRaw<T>: Unpin,
impl<T> UnsafeUnpin for PartitionState<T>
where
*mut T: UnsafeUnpin,
GapGuardRaw<T>: UnsafeUnpin,
impl<T> UnwindSafe for PartitionState<T>
where
*mut T: UnwindSafe,
GapGuardRaw<T>: UnwindSafe,
Blanket Implementations
impl<T> Any for PartitionState<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for PartitionState<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for PartitionState<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for PartitionState<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> SizeHint for PartitionState<T>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for PartitionState<T>
impl<T, U> Into<U> for PartitionState<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for PartitionState<T>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for PartitionState<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>