pub struct TimeSection {
pub start: f32,
pub end: f32,
}Expand description
A skippable section, category-agnostic. Contains a start and end time.
start is guaranteed to be <= end.
Fields§
§start: f32The start point of the section.
end: f32The end point of the section.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TimeSection
impl RefUnwindSafe for TimeSection
impl Send for TimeSection
impl Sync for TimeSection
impl Unpin for TimeSection
impl UnwindSafe for TimeSection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more