File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,10 @@ impl OwnedMeteredSemPermit {
221
221
}
222
222
223
223
#[ derive( Debug ) ]
224
- pub ( crate ) struct UsedMeteredSemPermit ( OwnedMeteredSemPermit ) ;
224
+ pub ( crate ) struct UsedMeteredSemPermit (
225
+ // Field isn't read, but we need to hold on to it.
226
+ #[ allow( dead_code) ] OwnedMeteredSemPermit ,
227
+ ) ;
225
228
226
229
macro_rules! dbg_panic {
227
230
( $( $arg: tt) * ) => {
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ pub(super) struct WFTExtractor {}
21
21
22
22
pub ( super ) enum WFTExtractorOutput {
23
23
NewWFT ( PermittedWFT ) ,
24
- FetchResult ( PermittedWFT , Arc < HistfetchRC > ) ,
24
+ FetchResult (
25
+ PermittedWFT ,
26
+ // Field isn't read, but we need to hold on to it.
27
+ #[ allow( dead_code) ] Arc < HistfetchRC > ,
28
+ ) ,
25
29
NextPage {
26
30
paginator : HistoryPaginator ,
27
31
update : HistoryUpdate ,
You can’t perform that action at this time.
0 commit comments