File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ impl FrameImageFormat {
28
28
}
29
29
30
30
impl Default for FrameImageFormat {
31
- #[ cfg_attr( coverage_nightly, no_coverage) ]
31
+ // #[cfg_attr(coverage_nightly, no_coverage)]
32
32
fn default ( ) -> Self {
33
33
FrameImageFormat :: Png
34
34
}
Original file line number Diff line number Diff line change 1
1
#![ feature( variant_count) ]
2
2
// TODO remove feature
3
3
#![ feature( is_some_and) ]
4
- #![ cfg_attr( coverage_nightly, feature( no_coverage) ) ]
4
+ // #![cfg_attr(coverage_nightly, feature(no_coverage))]
5
5
6
6
#[ macro_use]
7
7
extern crate static_assertions;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::ops::{Index, IndexMut};
6
6
pub struct Pixel ( [ u8 ; 4 ] ) ;
7
7
8
8
impl std:: fmt:: Debug for Pixel {
9
- #[ cfg_attr( coverage_nightly, no_coverage) ]
9
+ // #[cfg_attr(coverage_nightly, no_coverage)]
10
10
fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
11
11
f. debug_struct ( "Pixel" )
12
12
. field ( "r" , & self . 0 [ 0 ] )
@@ -18,7 +18,7 @@ impl std::fmt::Debug for Pixel {
18
18
}
19
19
20
20
impl std:: fmt:: Display for Pixel {
21
- #[ cfg_attr( coverage_nightly, no_coverage) ]
21
+ // #[cfg_attr(coverage_nightly, no_coverage)]
22
22
fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
23
23
f. debug_struct ( "Pixel" )
24
24
. field ( "r" , & self . 0 [ 0 ] )
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ impl AsRef<[f64; 2]> for Point {
61
61
impl AbsDiffEq for Point {
62
62
type Epsilon = <f64 as AbsDiffEq >:: Epsilon ;
63
63
64
- #[ cfg_attr( coverage_nightly, no_coverage) ]
64
+ // #[cfg_attr(coverage_nightly, no_coverage)]
65
65
fn default_epsilon ( ) -> Self :: Epsilon {
66
66
f64:: default_epsilon ( )
67
67
}
@@ -72,7 +72,7 @@ impl AbsDiffEq for Point {
72
72
}
73
73
74
74
impl RelativeEq for Point {
75
- #[ cfg_attr( coverage_nightly, no_coverage) ]
75
+ // #[cfg_attr(coverage_nightly, no_coverage)]
76
76
fn default_max_relative ( ) -> Self :: Epsilon {
77
77
f64:: default_max_relative ( )
78
78
}
@@ -89,7 +89,7 @@ impl RelativeEq for Point {
89
89
}
90
90
91
91
impl UlpsEq for Point {
92
- #[ cfg_attr( coverage_nightly, no_coverage) ]
92
+ // #[cfg_attr(coverage_nightly, no_coverage)]
93
93
fn default_max_ulps ( ) -> u32 {
94
94
f64:: default_max_ulps ( )
95
95
}
Original file line number Diff line number Diff line change 1
1
#![ feature( int_roundings) ]
2
- #![ cfg_attr( coverage_nightly, feature( no_coverage) ) ]
2
+ // #![cfg_attr(coverage_nightly, feature(no_coverage))]
3
3
4
4
use error:: EffectError ;
5
5
use rusvid_core:: plane:: Plane ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ pub struct ScriptingEffect {
17
17
}
18
18
19
19
impl std:: fmt:: Debug for ScriptingEffect {
20
- #[ cfg_attr( coverage_nightly, no_coverage) ]
20
+ // #[cfg_attr(coverage_nightly, no_coverage)]
21
21
fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
22
22
f. debug_struct ( "ScriptingEffect" )
23
23
. field ( "id" , & self . id )
You can’t perform that action at this time.
0 commit comments