Type Alias ExecSyncResult

Source
pub type ExecSyncResult<T> = Result<T, ExecSyncError>;
Expand description

Shorthand for a Result where the error type is a ExecSyncError.

Aliased Type§

enum ExecSyncResult<T> {
    Ok(T),
    Err(ExecSyncError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ExecSyncError)

Contains the error value