[][src]Struct when::parser::Parser

pub struct Parser<'a, Tz: TimeZone + 'a> { /* fields omitted */ }

Implementations

impl<'a, Tz: TimeZone + 'a> Parser<'a, Tz>[src]

pub fn new(tz: Tz) -> Self[src]

pub fn parser(
    self,
    parser_func: Box<&'a dyn Fn(DateTime<Tz>, &'a str, bool) -> Vec<Result<MatchResult, DateTimeError>>>
) -> Self
[src]

pub fn max_dist(self, max_dist: usize) -> Self[src]

pub fn fuzzy_parse(self, fuzzy_parse: bool) -> Self[src]

pub fn get_tz(&self) -> &Tz[src]

pub fn parse(&self, input: &'a str) -> Vec<Result<DateTime<Tz>, DateTimeError>>[src]

pub fn parse_fixed_time(
    &self,
    now: NaiveDateTime,
    input: &'a str
) -> Vec<Result<DateTime<Tz>, DateTimeError>>
[src]

Auto Trait Implementations

impl<'a, Tz> !RefUnwindSafe for Parser<'a, Tz>

impl<'a, Tz> !Send for Parser<'a, Tz>

impl<'a, Tz> !Sync for Parser<'a, Tz>

impl<'a, Tz> Unpin for Parser<'a, Tz> where
    Tz: Unpin

impl<'a, Tz> !UnwindSafe for Parser<'a, Tz>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.