Enum Error

Source
pub enum Error<K>
where K: Clone + Ord,
{ ConsecutiveReds, UnbalancedBlacks(String), SortError(K, K), OverwriteKey, }
Expand description

Error enumerates over all possible errors that this package shall return.

Variants§

§

ConsecutiveReds

Fatal case, breaking one of the two LLRB rules.

§

UnbalancedBlacks(String)

Fatal case, breaking one of the two LLRB rules. The String component of this variant can be used for debugging.

§

SortError(K, K)

Fatal case, index entries are not in sort-order.

§

OverwriteKey

Returned by create() API when key is already present.

Trait Implementations§

Source§

impl<K> Debug for Error<K>
where K: Clone + Ord + Debug,

Source§

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

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

impl<K> PartialEq for Error<K>
where K: Clone + Ord + PartialEq,

Source§

fn eq(&self, other: &Error<K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<K> StructuralPartialEq for Error<K>
where K: Clone + Ord,

Auto Trait Implementations§

§

impl<K> Freeze for Error<K>
where K: Freeze,

§

impl<K> RefUnwindSafe for Error<K>
where K: RefUnwindSafe,

§

impl<K> Send for Error<K>
where K: Send,

§

impl<K> Sync for Error<K>
where K: Sync,

§

impl<K> Unpin for Error<K>
where K: Unpin,

§

impl<K> UnwindSafe for Error<K>
where K: UnwindSafe,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.