[][src]Struct yadf::Duplicates

pub struct Duplicates<'a, H: Ord, T>(_);

A view which only provides access to duplicate entries

Implementations

impl<H: Ord, T, '_> Duplicates<'_, H, T>[src]

pub fn iter(&self) -> impl Iterator<Item = &[T]>[src]

Iterator over the buckets

pub fn display<D: OutputFormat>(&self) -> Display<'_, H, T, D>[src]

Returns an object that implements Display

Depending on the contents of the TreeBag, the display object can be parameterized to get a different Display implemenation.

Trait Implementations

impl<'a, H: Debug + Ord, T: Debug> Debug for Duplicates<'a, H, T>[src]

impl<H, T, '_> Serialize for Duplicates<'_, H, T> where
    H: Ord,
    T: Serialize
[src]

Auto Trait Implementations

impl<'a, H, T> RefUnwindSafe for Duplicates<'a, H, T> where
    H: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, H, T> Send for Duplicates<'a, H, T> where
    H: Sync,
    T: Sync

impl<'a, H, T> Sync for Duplicates<'a, H, T> where
    H: Sync,
    T: Sync

impl<'a, H, T> Unpin for Duplicates<'a, H, T>

impl<'a, H, T> UnwindSafe for Duplicates<'a, H, T> where
    H: RefUnwindSafe,
    T: RefUnwindSafe

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,