You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: quicklog/tests/failures/struct_missing_display.stderr
+19-2
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,15 @@ error[E0277]: the trait bound `Something: Serialize` is not satisfied
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Serialize` is not implemented for `Something`
6
6
|
7
7
= help: the following other types implement trait `Serialize`:
8
-
SerializeStruct
9
-
BigStruct
8
+
isize
9
+
i32
10
+
i64
11
+
usize
12
+
u32
13
+
u64
14
+
f32
15
+
f64
16
+
and $N others
10
17
note: required by a bound in `serialize_check`
11
18
--> tests/failures/struct_missing_display.rs:12:5
12
19
|
@@ -31,6 +38,11 @@ error[E0599]: no method named `encode` found for struct `Something` in the curre
31
38
= note: the following trait defines an item `encode`, perhaps you need to implement it:
32
39
candidate #1: `Serialize`
33
40
= note: this error originates in the macro `quicklog::make_store` which comes from the expansion of the macro `info` (in Nightly builds, run with -Z macro-backtrace for more info)
41
+
help: one of the expressions' fields has a method of the same name
error[E0599]: no method named `buffer_size_required` found for struct `Something` in the current scope
36
48
--> tests/failures/struct_missing_display.rs:12:5
@@ -47,3 +59,8 @@ error[E0599]: no method named `buffer_size_required` found for struct `Something
47
59
= note: the following trait defines an item `buffer_size_required`, perhaps you need to implement it:
48
60
candidate #1: `Serialize`
49
61
= note: this error originates in the macro `quicklog::make_store` which comes from the expansion of the macro `info` (in Nightly builds, run with -Z macro-backtrace for more info)
62
+
help: one of the expressions' fields has a method of the same name
0 commit comments