Enum bimap::Overwritten[][src]

pub enum Overwritten<L, R> {
    Neither,
    Left(L, R),
    Right(L, R),
    Pair(L, R),
    Both((L, R)(L, R)),
}

The previous left-right pairs, if any, that were overwritten by a call to the insert method of a bimap.

Variants

Neither

Neither the left nor the right value previously existed in the bimap.

Left(L, R)

The left value existed in the bimap, and the previous left-right pair is returned.

Right(L, R)

The right value existed in the bimap, and the previous left-right pair is returned.

Pair(L, R)

The left-right pair already existed in the bimap, and the previous left-right pair is returned.

Both((L, R)(L, R))

Both the left and the right value existed in the bimap, but as part of separate pairs. The first tuple is the left-right pair of the previous left value, and the second is the left-right pair of the previous right value.

Implementations

impl<L, R> Overwritten<L, R>[src]

pub fn did_overwrite(&self) -> bool[src]

Returns a boolean indicating if the Overwritten variant implies any values were overwritten.

This method is true for all variants other than Neither.

Examples

use bimap::{BiMap, Overwritten};

let mut bimap = BiMap::new();
assert!(!bimap.insert('a', 1).did_overwrite());
assert!(bimap.insert('a', 2).did_overwrite());

Trait Implementations

impl<L: Clone, R: Clone> Clone for Overwritten<L, R>[src]

impl<L: Copy, R: Copy> Copy for Overwritten<L, R>[src]

impl<L: Debug, R: Debug> Debug for Overwritten<L, R>[src]

impl<L: Eq, R: Eq> Eq for Overwritten<L, R>[src]

impl<L: Hash, R: Hash> Hash for Overwritten<L, R>[src]

impl<L: PartialEq, R: PartialEq> PartialEq<Overwritten<L, R>> for Overwritten<L, R>[src]

impl<L, R> StructuralEq for Overwritten<L, R>[src]

impl<L, R> StructuralPartialEq for Overwritten<L, R>[src]

Auto Trait Implementations

impl<L, R> RefUnwindSafe for Overwritten<L, R> where
    L: RefUnwindSafe,
    R: RefUnwindSafe

impl<L, R> Send for Overwritten<L, R> where
    L: Send,
    R: Send

impl<L, R> Sync for Overwritten<L, R> where
    L: Sync,
    R: Sync

impl<L, R> Unpin for Overwritten<L, R> where
    L: Unpin,
    R: Unpin

impl<L, R> UnwindSafe for Overwritten<L, R> where
    L: UnwindSafe,
    R: 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> 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.