pub enum ExtractResult<V> {
Single(V),
Multiple(Vec<V>),
Abort,
}Expand description
Result of extracting zero, one or more values from a bloop.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for ExtractResult<V>where
V: Freeze,
impl<V> RefUnwindSafe for ExtractResult<V>where
V: RefUnwindSafe,
impl<V> Send for ExtractResult<V>where
V: Send,
impl<V> Sync for ExtractResult<V>where
V: Sync,
impl<V> Unpin for ExtractResult<V>where
V: Unpin,
impl<V> UnwindSafe for ExtractResult<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