use shrev::*; fn is_sync() {} fn is_send() {} #[test] fn event_channel_bounds() { is_send::>(); is_sync::>(); } #[test] fn reader_id_bounds() { is_send::>(); is_sync::>(); } #[test] fn event_iterator_bounds() { is_send::>(); is_sync::>(); }