diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
commit | 2111c1248b08236a839dcf22036f92735bceb31c (patch) | |
tree | 9313da344b7134a913d1d917162e55b35fe1e74f /stockton-levels/src/traits/light_vols.rs | |
parent | 102e166b040030b590df83888a1d1a47d0130f10 (diff) |
chore(all): style formatting and clippy fixes
Diffstat (limited to 'stockton-levels/src/traits/light_vols.rs')
-rw-r--r-- | stockton-levels/src/traits/light_vols.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stockton-levels/src/traits/light_vols.rs b/stockton-levels/src/traits/light_vols.rs index 8e75401..871f028 100644 --- a/stockton-levels/src/traits/light_vols.rs +++ b/stockton-levels/src/traits/light_vols.rs @@ -27,6 +27,6 @@ pub struct LightVol { pub trait HasLightVols { type LightVolsIter<'a>: Iterator<Item = &'a LightVol>; - fn lightvols_iter<'a>(&'a self) -> Self::LightVolsIter<'a>; - fn get_lightvol<'a>(&'a self, index: u32) -> &'a LightVol; + fn lightvols_iter(&self) -> Self::LightVolsIter<'_>; + fn get_lightvol(&self, index: u32) -> &LightVol; } |