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),
}pub type ExecSyncResult<T> = Result<T, ExecSyncError>;Shorthand for a Result where the error type is a ExecSyncError.
enum ExecSyncResult<T> {
Ok(T),
Err(ExecSyncError),
}