We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8caf5ec commit ea66980Copy full SHA for ea66980
example/client.rs
@@ -53,7 +53,10 @@ fn main() {
53
panic!("not expecting an error from the example server: {:?}", e)
54
}
55
Ok(x) => {
56
- panic!("not expecting a OK response from the example server: {:?}", x)
+ panic!(
57
+ "not expecting a OK response from the example server: {:?}",
58
+ x
59
+ )
60
61
62
println!(
@@ -107,7 +110,10 @@ fn main() {
107
110
108
111
109
112
Ok(s) => {
- panic!("not expecting a OK response from the example server: {:?}", s)
113
114
115
+ s
116
117
118
};
119
0 commit comments