cargo fmt + clippy

This commit is contained in:
2025-11-21 16:02:15 +09:00
parent b4991fa748
commit 8d28ce3ef9
24 changed files with 67 additions and 73 deletions

View File

@@ -30,9 +30,6 @@ impl FromStr for TimeInterval {
debug_assert!(start <= end);
}
Ok(Self {
start: start,
end: end,
})
Ok(Self { start, end })
}
}

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 })
}
}