pub type ReceiptCheck<Rcpt> = Arc<dyn Check<Rcpt> + Sync + Send>;
ReceiptCheck is a type alias for an Arc of a struct that implements the Check trait.
Check
pub struct ReceiptCheck<Rcpt> { /* private fields */ }