pub type AsyncSpawnResult = Result<(), JoinError>;
Expand description
Result type for asynchronous spawn operations.
§Returns
Result<(), JoinError>
- The spawn operation result.
Aliased Type§
pub enum AsyncSpawnResult {
Ok(()),
Err(JoinError),
}