cargo fmt + clippy
This commit is contained in:
@@ -30,9 +30,6 @@ impl FromStr for TimeInterval {
|
||||
debug_assert!(start <= end);
|
||||
}
|
||||
|
||||
Ok(Self {
|
||||
start: start,
|
||||
end: end,
|
||||
})
|
||||
Ok(Self { start, end })
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 })
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user