pub type OrchestratorResult = Result<Option<String>>;Expand description
Type alias for orchestrator function return type.
Aliased Type§
pub enum OrchestratorResult {
Ok(Option<String>),
Err(DurableTaskError),
}Variants§
Ok(Option<String>)
Contains the success value
Err(DurableTaskError)
Contains the error value