pub type SyncSpawnResult = Result<(), Box<dyn Any + Send>>;
Expand description
Result type for synchronous spawn operations.
§Returns
Result<(), SpawnError>
- The spawn operation result.
Aliased Type§
pub enum SyncSpawnResult {
Ok(()),
Err(Box<dyn Any + Send>),
}