//!//! Configuration of the `join!` macro.
//!////// Defines configuration of the `join!` macro.
///pubstructConfig{////// Are branches sync or futures.
///pubis_async:bool,
////// Transpose final values into one `Result`/`Option` and check results at the end of step.
///pubis_try:bool,
////// Spawn branches using `std::thread::spawn` for sync or `tokio::spawn` for futures.
///pubis_spawn:bool,
}