Trait timespan::Parsable [] [src]

pub trait Parsable: FromStr<Err = ParseError> {
    fn parse_from_str(_: &str, _: &str) -> Result<Self, Error>
    where
        Self: Sized
; }

Spanable types that are parsable can be used to deserialize a given string to a span instance.

Required Methods

This is a wrapper method to the parse_from_str method from chrono.

Implementations on Foreign Types

impl Parsable for ChronoDateTime<Local>
[src]

impl Parsable for ChronoDateTime<Utc>
[src]

impl Parsable for ChronoDateTime<FixedOffset>
[src]

[src]

impl Parsable for NaiveDate
[src]

[src]

impl Parsable for NaiveDateTime
[src]

[src]

impl Parsable for NaiveTime
[src]

[src]

Implementors