Type Definition rustc::traits::SelectionResult
[−]
[src]
type SelectionResult<'tcx, T> = Result<Option<T>, SelectionError<'tcx>>;
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
When performing resolution, it is typically the case that there can be one of three outcomes:
Ok(Some(r)): success occurred with resultrOk(None): could not definitely determine anything, usually due to inconclusive type inference.Err(e): erroreoccurred