File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
matrix-sdk-crypto/src/types/events Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ pub struct BaseClient {
129
129
#[ cfg( not( tarpaulin_include) ) ]
130
130
impl fmt:: Debug for BaseClient {
131
131
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
132
- f. debug_struct ( "Client " )
132
+ f. debug_struct ( "BaseClient " )
133
133
. field ( "session_meta" , & self . store . session_meta ( ) )
134
134
. field ( "sync_token" , & self . store . sync_token )
135
135
. finish_non_exhaustive ( )
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ impl RoomUpdates {
102
102
#[ cfg( not( tarpaulin_include) ) ]
103
103
impl fmt:: Debug for RoomUpdates {
104
104
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
105
- f. debug_struct ( "Rooms " )
105
+ f. debug_struct ( "RoomUpdates " )
106
106
. field ( "leave" , & self . leave )
107
107
. field ( "join" , & self . join )
108
108
. field ( "invite" , & DebugInvitedRoomUpdates ( & self . invite ) )
@@ -138,7 +138,7 @@ pub struct JoinedRoomUpdate {
138
138
#[ cfg( not( tarpaulin_include) ) ]
139
139
impl fmt:: Debug for JoinedRoomUpdate {
140
140
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
141
- f. debug_struct ( "JoinedRoom " )
141
+ f. debug_struct ( "JoinedRoomUpdate " )
142
142
. field ( "unread_notifications" , & self . unread_notifications )
143
143
. field ( "timeline" , & self . timeline )
144
144
. field ( "state" , & DebugListOfRawEvents ( & self . state ) )
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ pub struct NoOlmWithheldContent {
264
264
#[ cfg( not( tarpaulin_include) ) ]
265
265
impl std:: fmt:: Debug for CommonWithheldCodeContent {
266
266
fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
267
- f. debug_struct ( "AnyWithheldContent " )
267
+ f. debug_struct ( "CommonWithheldCodeContent " )
268
268
. field ( "room_id" , & self . room_id )
269
269
. field ( "session_id" , & self . session_id )
270
270
. field ( "sender_key" , & self . sender_key )
Original file line number Diff line number Diff line change @@ -1585,7 +1585,7 @@ pub struct OidcSessionTokens {
1585
1585
#[ cfg( not( tarpaulin_include) ) ]
1586
1586
impl fmt:: Debug for OidcSessionTokens {
1587
1587
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
1588
- f. debug_struct ( "SessionTokens " ) . finish_non_exhaustive ( )
1588
+ f. debug_struct ( "OidcSessionTokens " ) . finish_non_exhaustive ( )
1589
1589
}
1590
1590
}
1591
1591
You can’t perform that action at this time.
0 commit comments