type CompiledCandidates = Result<(Arc<[Candidate]>, bool), String>;Aliased Type§
enum CompiledCandidates {
Ok((Arc<[Candidate]>, bool)),
Err(String),
}Variants§
Ok((Arc<[Candidate]>, bool))
Contains the success value
Err(String)
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.