dont deref

This commit is contained in:
Corey Farwell 2018-08-29 08:59:38 -05:00
parent 53928d5367
commit f42442b6e0

View File

@ -134,7 +134,7 @@ enum Method {
impl Method { impl Method {
fn suggestion(self) -> &'static str { fn suggestion(self) -> &'static str {
match *self { match self {
Method::Offset => "add", Method::Offset => "add",
Method::WrappingOffset => "wrapping_add", Method::WrappingOffset => "wrapping_add",
} }
@ -143,7 +143,7 @@ impl Method {
impl fmt::Display for Method { impl fmt::Display for Method {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self { match self {
Method::Offset => write!(f, "offset"), Method::Offset => write!(f, "offset"),
Method::WrappingOffset => write!(f, "wrapping_offset"), Method::WrappingOffset => write!(f, "wrapping_offset"),
} }