Enum bimap::Overwritten

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

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§

source§

impl<L, R> Overwritten<L, R>

source

pub fn did_overwrite(&self) -> bool

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§

source§

impl<L: Clone, R: Clone> Clone for Overwritten<L, R>

source§

fn clone(&self) -> Overwritten<L, R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<L: Debug, R: Debug> Debug for Overwritten<L, R>

source§

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

Formats the value using the given formatter. Read more
source§

impl<L: Hash, R: Hash> Hash for Overwritten<L, R>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<L: PartialEq, R: PartialEq> PartialEq<Overwritten<L, R>> for Overwritten<L, R>

source§

fn eq(&self, other: &Overwritten<L, R>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<L: Copy, R: Copy> Copy for Overwritten<L, R>

source§

impl<L: Eq, R: Eq> Eq for Overwritten<L, R>

source§

impl<L, R> StructuralEq for Overwritten<L, R>

source§

impl<L, R> StructuralPartialEq for Overwritten<L, R>

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.