#[non_exhaustive]pub enum ProbeResult<'a> {
KeepGoing,
Solved(&'a Resolution),
NoMatch,
}Expand description
Result of reporting a key to the probing solver.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
KeepGoing
Keep reporting keys - not yet disambiguated
Solved(&'a Resolution)
Solved! Use this configuration
NoMatch
No configuration matches the observed keys
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ProbeResult<'a>
impl<'a> RefUnwindSafe for ProbeResult<'a>
impl<'a> Send for ProbeResult<'a>
impl<'a> Sync for ProbeResult<'a>
impl<'a> Unpin for ProbeResult<'a>
impl<'a> UnsafeUnpin for ProbeResult<'a>
impl<'a> UnwindSafe for ProbeResult<'a>
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