pub struct OverlapError<V> {
pub value: V,
}Expand description
The error returned when inserting a range that overlaps another range when it should not have. Contains the value that was not inserted.
Fields§
§value: VThe value which was not inserted, because of the overlap error.
Trait Implementations§
source§impl<V: Debug> Debug for OverlapError<V>
impl<V: Debug> Debug for OverlapError<V>
source§impl<V: PartialEq> PartialEq for OverlapError<V>
impl<V: PartialEq> PartialEq for OverlapError<V>
source§fn eq(&self, other: &OverlapError<V>) -> bool
fn eq(&self, other: &OverlapError<V>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<V> StructuralPartialEq for OverlapError<V>
Auto Trait Implementations§
impl<V> RefUnwindSafe for OverlapError<V>where
V: RefUnwindSafe,
impl<V> Send for OverlapError<V>where
V: Send,
impl<V> Sync for OverlapError<V>where
V: Sync,
impl<V> Unpin for OverlapError<V>where
V: Unpin,
impl<V> UnwindSafe for OverlapError<V>where
V: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more