[][src]Enum timespan::Error

pub enum Error {
    Parsing(ParseError),
    Regex(Error),
    Ordering,
    OutOfRange,
    Empty,
    NotContinuous,
    NoStart,
    NoEnd,
    LocalAmbigious,
    BadFormat,
}

This error describes errors that can occur when operating on spans.

Variants

Parsing(ParseError)

A span could not be parsed from a string.

Regex(Error)

This occurs when a regex failed to compile or match. This is usually associated with a parsing operation.

Ordering

The bounds of the span are not in the correct order.

OutOfRange

An operation accessed time slots that are outside the bounds of the span.

Empty

The span has a duration of zero.

NotContinuous

An operation would split a span in two.

NoStart

The span has no start time.

NoEnd

The span has no end time.

LocalAmbigious

The local time zone is ambigious.

BadFormat

The given string has a bad format.

Trait Implementations

impl From<ParseError> for Error[src]

impl From<Error> for Error[src]

impl Display for Error[src]

impl Debug for Error[src]

impl Error for Error[src]

Auto Trait Implementations

impl Send for Error

impl Unpin for Error

impl Sync for Error

impl RefUnwindSafe for Error

impl UnwindSafe for Error

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

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

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]