pub type SyncSpawnResult = Result<(), SpawnError>;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>),
}