File tree Expand file tree Collapse file tree 7 files changed +9
-0
lines changed
matrix-sdk-crypto/src/store Expand file tree Collapse file tree 7 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ impl Session {
6868 }
6969}
7070
71+ #[ cfg( not( tarpaulin_include) ) ]
7172impl fmt:: Debug for Session {
7273 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
7374 f. debug_struct ( "Session" )
Original file line number Diff line number Diff line change @@ -642,6 +642,7 @@ impl Store {
642642 }
643643}
644644
645+ #[ cfg( not( tarpaulin_include) ) ]
645646impl fmt:: Debug for Store {
646647 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
647648 f. debug_struct ( "Store" )
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ impl RecoveryKey {
195195 }
196196}
197197
198+ #[ cfg( not( tarpaulin_include) ) ]
198199impl Debug for RecoveryKey {
199200 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
200201 f. debug_struct ( "RecoveryKey" ) . finish ( )
@@ -245,6 +246,7 @@ pub struct CrossSigningKeyExport {
245246 pub user_signing_key : Option < String > ,
246247}
247248
249+ #[ cfg( not( tarpaulin_include) ) ]
248250impl Debug for CrossSigningKeyExport {
249251 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
250252 f. debug_struct ( "CrossSigningKeyExport" )
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ pub struct SqliteCryptoStore {
6767 session_cache : SessionStore ,
6868}
6969
70+ #[ cfg( not( tarpaulin_include) ) ]
7071impl fmt:: Debug for SqliteCryptoStore {
7172 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
7273 if let Some ( path) = & self . path {
Original file line number Diff line number Diff line change @@ -484,6 +484,7 @@ enum BuilderStoreConfig {
484484 Custom ( StoreConfig ) ,
485485}
486486
487+ #[ cfg( not( tarpaulin_include) ) ]
487488impl fmt:: Debug for BuilderStoreConfig {
488489 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
489490 #[ allow( clippy:: infallible_destructuring_match) ]
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ impl Default for SyncSettings {
3434 }
3535}
3636
37+ #[ cfg( not( tarpaulin_include) ) ]
3738impl fmt:: Debug for SyncSettings {
3839 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
3940 let mut s = f. debug_struct ( "SyncSettings" ) ;
Original file line number Diff line number Diff line change @@ -338,6 +338,7 @@ impl From<RemoteEventTimelineItem> for EventTimelineItem {
338338 }
339339}
340340
341+ #[ cfg( not( tarpaulin_include) ) ]
341342impl fmt:: Debug for RemoteEventTimelineItem {
342343 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
343344 f. debug_struct ( "RemoteEventTimelineItem" )
@@ -509,6 +510,7 @@ impl Message {
509510 }
510511}
511512
513+ #[ cfg( not( tarpaulin_include) ) ]
512514impl fmt:: Debug for Message {
513515 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
514516 // since timeline items are logged, don't include all fields here so
You can’t perform that action at this time.
0 commit comments