File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
vm/devices/net/net_consomme/consomme/src/tcp Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ impl<'a> View<'a> {
101
101
}
102
102
}
103
103
104
- pub fn iter ( & self ) -> impl ' _ + Iterator < Item = & u8 > {
104
+ pub fn iter ( & self ) -> impl Iterator < Item = & u8 > + use < ' _ > {
105
105
let ( a, b) = self . as_slices ( ) ;
106
106
a. iter ( ) . chain ( b)
107
107
}
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ pub(crate) struct Vtl2Emulation {
190
190
mod inspect_helpers {
191
191
use super :: * ;
192
192
193
- pub ( super ) fn vsm_config_raw ( raw : & AtomicU64 ) -> impl Inspect {
193
+ pub ( super ) fn vsm_config_raw ( raw : & AtomicU64 ) -> impl Inspect + use < > {
194
194
let config = HvRegisterVsmPartitionConfig :: from ( raw. load ( Ordering :: Relaxed ) ) ;
195
195
inspect:: AsDebug ( config)
196
196
}
You can’t perform that action at this time.
0 commit comments