Skip to content

Commit

Permalink
Server status check did not compile
Browse files Browse the repository at this point in the history
`Status` doesn't implement `std::fmt::Display`
the trait `std::fmt::Display` is not implemented for `Status`
  • Loading branch information
Bolognafingers committed Oct 13, 2023
1 parent 2ee35c4 commit fd375bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let client = Client::new(IdentificationMethod::from_user_agent(
```rust no_run
let status = client.status().await.unwrap();

println!("{}", client.status().await.unwrap());
println!("{:?}", status);
```

Returns:
Expand Down

0 comments on commit fd375bc

Please sign in to comment.