[][src]Struct lognplot::time::TimeSpan

pub struct TimeSpan {
    pub start: TimeStamp,
    pub end: TimeStamp,
}

A timespan is a period between two moments in time. It differs from a duration, in the sense that a duration is not fixed on the global time scale.

Fields

start: TimeStampend: TimeStamp

Methods

impl TimeSpan[src]

pub fn new(start: TimeStamp, end: TimeStamp) -> Self[src]

pub fn from_seconds(start: isize, end: isize) -> Self[src]

pub fn extend_to_include(&mut self, time_point: &TimeStamp)[src]

pub fn extend_to_include_span(&mut self, span: &Self)[src]

Adjust this timespan to include the given span.

pub fn contains(&self, timestamp: &TimeStamp) -> bool[src]

pub fn overlap(&self, other: &Self) -> bool[src]

Test if those two timespans overlap.

Trait Implementations

impl Clone for TimeSpan[src]

impl PartialEq<TimeSpan> for TimeSpan[src]

impl Debug for TimeSpan[src]

impl StructuralPartialEq for TimeSpan[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]