@@ -83,14 +83,14 @@ pub struct LoopHandle<'l, Data> {
8383}
8484
8585impl < ' l , Data > std:: fmt:: Debug for LoopHandle < ' l , Data > {
86- #[ cfg_attr( feature = "nightly_coverage" , no_coverage ) ]
86+ #[ cfg_attr( feature = "nightly_coverage" , coverage ( off ) ) ]
8787 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
8888 f. write_str ( "LoopHandle { ... }" )
8989 }
9090}
9191
9292impl < ' l , Data > Clone for LoopHandle < ' l , Data > {
93- #[ cfg_attr( feature = "nightly_coverage" , no_coverage ) ]
93+ #[ cfg_attr( feature = "nightly_coverage" , coverage ( off ) ) ]
9494 fn clone ( & self ) -> Self {
9595 LoopHandle {
9696 inner : self . inner . clone ( ) ,
@@ -128,7 +128,7 @@ impl<'l, Data> LoopHandle<'l, Data> {
128128 /// Use this function if you need access to the event source after its insertion in the loop.
129129 ///
130130 /// See also `insert_source`.
131- #[ cfg_attr( feature = "nightly_coverage" , no_coverage ) ] // Contains a branch we can't hit w/o OOM
131+ #[ cfg_attr( feature = "nightly_coverage" , coverage ( off ) ) ] // Contains a branch we can't hit w/o OOM
132132 pub fn register_dispatcher < S > (
133133 & self ,
134134 dispatcher : Dispatcher < ' l , S , Data > ,
@@ -282,7 +282,7 @@ pub struct EventLoop<'l, Data> {
282282}
283283
284284impl < ' l , Data > std:: fmt:: Debug for EventLoop < ' l , Data > {
285- #[ cfg_attr( feature = "nightly_coverage" , no_coverage ) ]
285+ #[ cfg_attr( feature = "nightly_coverage" , coverage ( off ) ) ]
286286 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
287287 f. write_str ( "EventLoop { ... }" )
288288 }
@@ -659,7 +659,7 @@ pub struct LoopSignal {
659659}
660660
661661impl std:: fmt:: Debug for LoopSignal {
662- #[ cfg_attr( feature = "nightly_coverage" , no_coverage ) ]
662+ #[ cfg_attr( feature = "nightly_coverage" , coverage ( off ) ) ]
663663 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
664664 f. write_str ( "LoopSignal { ... }" )
665665 }
0 commit comments