Skip to content

Instantly share code, notes, and snippets.

@graylikeme
Created May 26, 2019 11:59
Show Gist options
  • Save graylikeme/348df4ff298d9bfc6339292dcb63f847 to your computer and use it in GitHub Desktop.
Save graylikeme/348df4ff298d9bfc6339292dcb63f847 to your computer and use it in GitHub Desktop.
fn parse<'de, T>(body: Bytes) -> Option<T>
where T: Deserialize<'de>
{
serde_json::from_reader(body.into_buf()).unwrap_or_default()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment