pub type ProcessResult = Result<(), Box<dyn Error + Send + Sync>>;Expand description
Output of a process future: Ok(()) on clean completion, or an error that the
model surfaces as a crate::ProcessError.
Aliased Type§
pub enum ProcessResult {
Ok(()),
Err(Box<dyn Error + Send + Sync>),
}