[][src]Struct rdx::RadixSortStrategyWith

pub struct RadixSortStrategyWith<B, S> {
    pub bytes: B,
    pub sort: S,
}

A radix sort strategy with a given byte extraction function and fallback sort

Fields

bytes: B

The byte-extraction method of this strategy

sort: S

The fallback sort used by this strategy

Trait Implementations

impl<B: Clone, S: Clone> Clone for RadixSortStrategyWith<B, S>[src]

impl<B: Copy, S: Copy> Copy for RadixSortStrategyWith<B, S>[src]

impl<B: Debug, S: Debug> Debug for RadixSortStrategyWith<B, S>[src]

impl<B, S, K> KeyBytes<K> for RadixSortStrategyWith<B, S> where
    B: KeyBytes<K>, 
[src]

impl<B, S, K> TrySorter<K> for RadixSortStrategyWith<B, S> where
    S: TrySorter<K>, 
[src]

Auto Trait Implementations

impl<B, S> RefUnwindSafe for RadixSortStrategyWith<B, S> where
    B: RefUnwindSafe,
    S: RefUnwindSafe

impl<B, S> Send for RadixSortStrategyWith<B, S> where
    B: Send,
    S: Send

impl<B, S> Sync for RadixSortStrategyWith<B, S> where
    B: Sync,
    S: Sync

impl<B, S> Unpin for RadixSortStrategyWith<B, S> where
    B: Unpin,
    S: Unpin

impl<B, S> UnwindSafe for RadixSortStrategyWith<B, S> where
    B: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, K> RadixSortStrategy<K> for T where
    T: KeyBytes<K> + TrySorter<K>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.