pub type ExecutorResult<T> = Result<T, ExecutorError>;Expand description
A Result type for the ExecutorError enum.
Aliased Type§
pub enum ExecutorResult<T> {
Ok(T),
Err(ExecutorError),
}pub type ExecutorResult<T> = Result<T, ExecutorError>;A Result type for the ExecutorError enum.
pub enum ExecutorResult<T> {
Ok(T),
Err(ExecutorError),
}