Skip to content

Commit

Permalink
Remove Hash from tide example
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Strojny <[email protected]>
  • Loading branch information
lstrojny committed Jan 18, 2023
1 parent 2215a5d commit bccf17f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/tide.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ async fn main() -> std::result::Result<(), std::io::Error> {
Ok(())
}

#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord, EncodeLabelSet)]
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, EncodeLabelSet)]
struct Labels {
method: Method,
path: String,
}

#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord, EncodeLabelValue)]
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, EncodeLabelValue)]
enum Method {
Get,
Put,
Expand Down

0 comments on commit bccf17f

Please sign in to comment.