pub enum SatisfyResult<'a> {
Continue,
Solved(&'a Configuration),
NoMatch,
}Expand description
Result of reporting which fields the value can satisfy.
Variants§
Continue
Continue - still multiple candidates, keep feeding keys.
Solved(&'a Configuration)
Solved to exactly one configuration.
NoMatch
No configuration can accept the value (no fields were satisfied).
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SatisfyResult<'a>
impl<'a> RefUnwindSafe for SatisfyResult<'a>
impl<'a> Send for SatisfyResult<'a>
impl<'a> Sync for SatisfyResult<'a>
impl<'a> Unpin for SatisfyResult<'a>
impl<'a> UnwindSafe for SatisfyResult<'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