File tree 2 files changed +2
-1
lines changed
crates/matrix-sdk-base/src 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,6 @@ impl BaseClient {
249
249
}
250
250
251
251
/// Get a reference to the store.
252
- #[ allow( unknown_lints, clippy:: explicit_auto_deref) ]
253
252
pub fn store ( & self ) -> & DynStateStore {
254
253
self . store . deref ( )
255
254
}
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ pub struct EventCacheStoreLock {
51
51
store : Arc < DynEventCacheStore > ,
52
52
}
53
53
54
+ #[ cfg( not( tarpaulin_include) ) ]
54
55
impl fmt:: Debug for EventCacheStoreLock {
55
56
fn fmt ( & self , formatter : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
56
57
formatter. debug_struct ( "EventCacheStoreLock" ) . finish_non_exhaustive ( )
@@ -95,6 +96,7 @@ pub struct EventCacheStoreLockGuard<'a> {
95
96
store : & ' a DynEventCacheStore ,
96
97
}
97
98
99
+ #[ cfg( not( tarpaulin_include) ) ]
98
100
impl < ' a > fmt:: Debug for EventCacheStoreLockGuard < ' a > {
99
101
fn fmt ( & self , formatter : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
100
102
formatter. debug_struct ( "EventCacheStoreLockGuard" ) . finish_non_exhaustive ( )
You can’t perform that action at this time.
0 commit comments