[][src]Struct cron_clock::types::Input

pub struct Input<T> {
    pub inner: T,
    pub at_eof: bool,
}

Fields

inner: Tat_eof: bool

Trait Implementations

impl<T> AsBytes for Input<T> where
    T: AsBytes
[src]

impl<T> AtEof for Input<T>[src]

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

impl<'b, T> Compare<&'b str> for Input<T> where
    T: Compare<&'b str>, 
[src]

impl<T> Copy for Input<T> where
    T: Copy
[src]

impl<T> Debug for Input<T> where
    T: Debug
[src]

impl<'b, T> FindSubstring<&'b str> for Input<T> where
    T: FindSubstring<&'b str>, 
[src]

impl<'a, T> FindToken<&'a u8> for Input<T> where
    T: FindToken<&'a u8>, 
[src]

impl<T> FindToken<char> for Input<T> where
    T: FindToken<char>, 
[src]

impl<T> FindToken<u8> for Input<T> where
    T: FindToken<u8>, 
[src]

impl<T> Hash for Input<T> where
    T: Hash
[src]

impl<T> InputIter for Input<T> where
    T: InputIter
[src]

type Item = <T as InputIter>::Item

type RawItem = <T as InputIter>::RawItem

type Iter = <T as InputIter>::Iter

type IterElem = <T as InputIter>::IterElem

impl<T> InputLength for Input<T> where
    T: InputLength
[src]

impl<T> InputTake for Input<T> where
    T: InputTake
[src]

impl<T> Offset for Input<T> where
    T: Offset
[src]

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

impl<T> PartialEq<Input<T>> for Input<T> where
    T: PartialEq<T>, 
[src]

impl<T> Slice<Range<usize>> for Input<T> where
    T: Slice<Range<usize>>, 
[src]

impl<T> Slice<RangeFrom<usize>> for Input<T> where
    T: Slice<RangeFrom<usize>>, 
[src]

impl<T> Slice<RangeFull> for Input<T> where
    T: Slice<RangeFull>, 
[src]

impl<T> Slice<RangeTo<usize>> for Input<T> where
    T: Slice<RangeTo<usize>>, 
[src]

impl<T> StructuralPartialEq for Input<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Input<T> where
    T: RefUnwindSafe

impl<T> Send for Input<T> where
    T: Send

impl<T> Sync for Input<T> where
    T: Sync

impl<T> Unpin for Input<T> where
    T: Unpin

impl<T> UnwindSafe for Input<T> where
    T: UnwindSafe

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> 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.