Merge pull request #298 from birkenfeld/as_mut

methods: allow &mut self for as_ methods
This commit is contained in:
Manish Goregaokar 2015-09-04 16:16:58 +05:30
commit af4d7f9b60

View file

@ -108,7 +108,7 @@ impl LintPass for MethodsPass {
const CONVENTIONS: [(&'static str, &'static [SelfKind]); 5] = [
("into_", &[ValueSelf]),
("to_", &[RefSelf]),
("as_", &[RefSelf]),
("as_", &[RefSelf, RefMutSelf]),
("is_", &[RefSelf, NoSelf]),
("from_", &[NoSelf]),
];