pub type Result<T> = Result<T, ProcessorError>;
Expand description
Result type for processor operations
Aliased Type§
enum Result<T> {
Ok(T),
Err(ProcessorError),
}
pub type Result<T> = Result<T, ProcessorError>;
Result type for processor operations
enum Result<T> {
Ok(T),
Err(ProcessorError),
}