methods: allow &mut self for as_ methods
This commit is contained in:
@@ -108,7 +108,7 @@ impl LintPass for MethodsPass {
|
|||||||
const CONVENTIONS: [(&'static str, &'static [SelfKind]); 5] = [
|
const CONVENTIONS: [(&'static str, &'static [SelfKind]); 5] = [
|
||||||
("into_", &[ValueSelf]),
|
("into_", &[ValueSelf]),
|
||||||
("to_", &[RefSelf]),
|
("to_", &[RefSelf]),
|
||||||
("as_", &[RefSelf]),
|
("as_", &[RefSelf, RefMutSelf]),
|
||||||
("is_", &[RefSelf, NoSelf]),
|
("is_", &[RefSelf, NoSelf]),
|
||||||
("from_", &[NoSelf]),
|
("from_", &[NoSelf]),
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user