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