Skip to main content

CommandExecutionFutureResult

Type Alias CommandExecutionFutureResult 

Source
pub type CommandExecutionFutureResult = Result<CommandExecutionFuture, Diagnostic>;

Aliased Type§

pub enum CommandExecutionFutureResult {
    Ok(Pin<Box<dyn Future<Output = Result<CommandExecutionResult, Diagnostic>> + Send>>),
    Err(Diagnostic),
}

Variants§

§1.0.0

Ok(Pin<Box<dyn Future<Output = Result<CommandExecutionResult, Diagnostic>> + Send>>)

Contains the success value

§1.0.0

Err(Diagnostic)

Contains the error value