pub struct TimeRange {
pub end: Option<f64>,
pub start: Option<f64>,
}
Expand description
Information about a time range.
Fields§
§end: Option<f64>
The end time of the time range.
Specify null to leave the end time open-ended.
start: Option<f64>
The start time of the time range.
Specify null to leave the start time open-ended.
Trait Implementations§
impl StructuralPartialEq for TimeRange
Auto Trait Implementations§
impl Freeze for TimeRange
impl RefUnwindSafe for TimeRange
impl Send for TimeRange
impl Sync for TimeRange
impl Unpin for TimeRange
impl UnwindSafe for TimeRange
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