dropbox / pb-jelly

A protobuf code generation framework for the Rust language developed at Dropbox.
Apache License 2.0
610 stars 25 forks source link

[pb-jelly-gen] Simplify String->str with as_deref #119

Closed grahamking closed 2 years ago

grahamking commented 2 years ago

Fixes clippy:

warning: called .as_ref().map(|s| s.as_str()) on an Option value. This can be done more directly by calling string.as_deref() instead

nipunn1313 commented 2 years ago

lgtm!