1 2 3 4 5 6 7 8
use futures_core::task::SpawnErrorKind; /// The result of a failed spawn #[derive(Debug)] pub struct SpawnError { /// The kind of error pub kind: SpawnErrorKind, }
1 2 3 4 5 6 7 8
use futures_core::task::SpawnErrorKind; /// The result of a failed spawn #[derive(Debug)] pub struct SpawnError { /// The kind of error pub kind: SpawnErrorKind, }