pub enum DisjointIntervalError<V> {
Empty {
value: V,
},
Overflow {
value: V,
},
Overlap {
first: V,
second: V,
},
}Variants§
Trait Implementations§
Source§impl<V: Clone> Clone for DisjointIntervalError<V>
impl<V: Clone> Clone for DisjointIntervalError<V>
Source§fn clone(&self) -> DisjointIntervalError<V>
fn clone(&self) -> DisjointIntervalError<V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<V: Copy> Copy for DisjointIntervalError<V>
Source§impl<V: Debug> Debug for DisjointIntervalError<V>
impl<V: Debug> Debug for DisjointIntervalError<V>
impl<V: Eq> Eq for DisjointIntervalError<V>
Source§impl<V: PartialEq> PartialEq for DisjointIntervalError<V>
impl<V: PartialEq> PartialEq for DisjointIntervalError<V>
impl<V: PartialEq> StructuralPartialEq for DisjointIntervalError<V>
Auto Trait Implementations§
impl<V> Freeze for DisjointIntervalError<V>where
V: Freeze,
impl<V> RefUnwindSafe for DisjointIntervalError<V>where
V: RefUnwindSafe,
impl<V> Send for DisjointIntervalError<V>where
V: Send,
impl<V> Sync for DisjointIntervalError<V>where
V: Sync,
impl<V> Unpin for DisjointIntervalError<V>where
V: Unpin,
impl<V> UnsafeUnpin for DisjointIntervalError<V>where
V: UnsafeUnpin,
impl<V> UnwindSafe for DisjointIntervalError<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