usesuper::receiver::*;//// FailFastErrorReceiver
///// [ErrorReceiver] that fails on the first given error.
pubstructFailFastErrorReceiver;impl<ErrorT>ErrorReceiver<ErrorT>forFailFastErrorReceiver{fngive_error(&mutself, error: ErrorT)->Result<(), ErrorT>{Err(error)}}