cargo fmt + clippy

This commit is contained in:
2025-11-21 16:02:15 +09:00
parent 31e9ded99b
commit f65760314f
24 changed files with 67 additions and 73 deletions
+1 -4
View File
@@ -30,9 +30,6 @@ impl FromStr for TimeInterval {
debug_assert!(start <= end);
}
Ok(Self {
start: start,
end: end,
})
Ok(Self { start, end })
}
}
+1 -1
View File
@@ -23,6 +23,6 @@ impl FromStr for WindowRange {
debug_assert!(end.is_none_or(|end| end >= start));
Ok(Self { start, end: end })
Ok(Self { start, end })
}
}