[][src]Trait cron_clock::ParseTo

pub trait ParseTo<R> {
    fn parse_to(&self) -> Option<R>;
}

used to integrate str's parse() method

Required methods

fn parse_to(&self) -> Option<R>

Loading content...

Implementations on Foreign Types

impl<'a, R> ParseTo<R> for &'a [u8] where
    R: FromStr
[src]

impl<'a, R> ParseTo<R> for &'a str where
    R: FromStr
[src]

Loading content...

Implementors

impl<'a, R> ParseTo<R> for CompleteByteSlice<'a> where
    R: FromStr
[src]

impl<'a, R> ParseTo<R> for CompleteStr<'a> where
    R: FromStr
[src]

impl<'a, R, T> ParseTo<R> for Input<T> where
    R: FromStr,
    T: ParseTo<R>, 
[src]

Loading content...