Use the Self keyword where applicable.
https://github.com/rust-lang-nursery/rust-clippy/wiki#use_self
This commit is contained in:
@@ -144,8 +144,8 @@ pub struct FunctionImports {
|
||||
}
|
||||
|
||||
impl FunctionImports {
|
||||
fn new() -> FunctionImports {
|
||||
FunctionImports {
|
||||
fn new() -> Self {
|
||||
Self {
|
||||
functions: HashMap::new(),
|
||||
signatures: HashMap::new(),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user