Enum hyper_scripter::fuzzy::FuzzResult
source · pub enum FuzzResult<T> {
High(T),
Low(T),
Multi {
ans: T,
others: Vec<T>,
still_others: Vec<T>,
},
}
Variants§
Implementations§
source§impl<T> FuzzResult<T>
impl<T> FuzzResult<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for FuzzResult<T>where T: RefUnwindSafe,
impl<T> Send for FuzzResult<T>where T: Send,
impl<T> Sync for FuzzResult<T>where T: Sync,
impl<T> Unpin for FuzzResult<T>where T: Unpin,
impl<T> UnwindSafe for FuzzResult<T>where T: 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