Type Alias OrchestraResult
pub type OrchestraResult<T> = Result<T, OrchestraError>;
Expand description
Alias for a result with error type OrchestraError
.
Aliased Type§
enum OrchestraResult<T> {
Ok(T),
Err(OrchestraError),
}
pub type OrchestraResult<T> = Result<T, OrchestraError>;
Alias for a result with error type OrchestraError
.
enum OrchestraResult<T> {
Ok(T),
Err(OrchestraError),
}