@@ -97,7 +97,6 @@ pub struct RegisterBlock {
97
97
98
98
/// FPU access mode
99
99
#[ cfg( has_fpu) ]
100
- #[ allow( clippy:: missing_inline_in_public_items) ]
101
100
#[ derive( Clone , Copy , Debug , PartialEq , Eq ) ]
102
101
pub enum FpuAccessMode {
103
102
/// FPU is not accessible
@@ -194,7 +193,6 @@ impl SCB {
194
193
}
195
194
196
195
/// Processor core exceptions (internal interrupts)
197
- #[ allow( clippy:: missing_inline_in_public_items) ]
198
196
#[ derive( Clone , Copy , Debug , Eq , PartialEq ) ]
199
197
pub enum Exception {
200
198
/// Non maskable interrupt
@@ -260,7 +258,6 @@ impl Exception {
260
258
}
261
259
262
260
/// Active exception number
263
- #[ allow( clippy:: missing_inline_in_public_items) ]
264
261
#[ derive( Clone , Copy , Debug , Eq , PartialEq ) ]
265
262
pub enum VectActive {
266
263
/// Thread mode
@@ -913,7 +910,6 @@ impl SCB {
913
910
}
914
911
915
912
/// System handlers, exceptions with configurable priority
916
- #[ allow( clippy:: missing_inline_in_public_items) ]
917
913
#[ derive( Clone , Copy , Debug , Eq , PartialEq ) ]
918
914
#[ repr( u8 ) ]
919
915
pub enum SystemHandler {
0 commit comments