Refactor Plugin Load/Management to support upcoming changes #976
Annotations
2 errors
|
Clippy Check
Error: Clippy has exited with exit code 101
|
|
Clippy Check:
rust/src/repository/manager.rs#L18
error: you should consider adding a `Default` implementation for `RepositoryManager`
--> rust/src/repository/manager.rs:18:5
|
18 | / pub fn new() -> Self {
19 | | Self {}
20 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `-D clippy::new-without-default` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::new_without_default)]`
help: try adding this
|
17 + impl Default for RepositoryManager {
18 + fn default() -> Self {
19 + Self::new()
20 + }
21 + }
|
|
Loading