chore: use Self where possible

This commit is contained in:
CosminPerRam 2023-12-11 03:45:54 +02:00
parent f431508418
commit 486abbd9f7
3 changed files with 10 additions and 10 deletions

View file

@ -310,7 +310,7 @@ impl GatheringSettings {
}
impl Default for GatheringSettings {
fn default() -> Self { GatheringSettings::default() }
fn default() -> Self { Self::default() }
}
impl From<ExtraRequestSettings> for GatheringSettings {