pub type InputsPostProcessingFutureResult = Result<InputsPostProcessingFuture, Diagnostic>;Aliased Type§
pub enum InputsPostProcessingFutureResult {
Ok(Pin<Box<dyn Future<Output = Result<CommandInputsEvaluationResult, Diagnostic>> + Send>>),
Err(Diagnostic),
}Variants§
Ok(Pin<Box<dyn Future<Output = Result<CommandInputsEvaluationResult, Diagnostic>> + Send>>)
Contains the success value
Err(Diagnostic)
Contains the error value