Trait periodic::IntoInstantIter[][src]

pub trait IntoInstantIter {
    type IterType: Iterator<Item = Instant>;
    fn into_instant_iter(self) -> Self::IterType;
}

Cast into an Iterator of Instants (i.e. times)

Associated Types

The output Iterator type

Required Methods

Cast into Self::IterType

Implementations on Foreign Types

impl IntoInstantIter for Vec<Instant>
[src]

impl IntoInstantIter for Vec<Duration>
[src]

impl IntoInstantIter for Instant
[src]

impl IntoInstantIter for Duration
[src]

Implementors