[][src]Struct plotters_unstable::prelude::RangedDateTime

pub struct RangedDateTime<DT: Datelike + Timelike + TimeValue>(_, _);

The ranged coordinate for the date and time

Trait Implementations

impl<DT: Clone + Datelike + Timelike + TimeValue> Clone for RangedDateTime<DT>[src]

impl<Z: TimeZone> From<Range<DateTime<Z>>> for RangedDateTime<DateTime<Z>>[src]

impl From<Range<NaiveDateTime>> for RangedDateTime<NaiveDateTime>[src]

impl<DT> Ranged for RangedDateTime<DT> where
    DT: Datelike + Timelike + TimeValue + Clone + PartialOrd,
    DT: Add<Duration, Output = DT>,
    DT: Sub<DT, Output = Duration>,
    RangedDate<DT::DateType>: Ranged<ValueType = DT::DateType>, 
[src]

type FormatOption = DefaultFormatting

This marker decides if Plotters default ValueFormatter implementation should be used. This assicated type can be one of follow two types: - DefaultFormatting will allow Plotters automatically impl the formatter based on Debug trait, if Debug trait is not impl for the Self::Value, ValueFormatter will not impl unless you impl it manually. Read more

type ValueType = DT

The type of this value in this range specification

Auto Trait Implementations

impl<DT> RefUnwindSafe for RangedDateTime<DT> where
    DT: RefUnwindSafe

impl<DT> Send for RangedDateTime<DT> where
    DT: Send

impl<DT> Sync for RangedDateTime<DT> where
    DT: Sync

impl<DT> Unpin for RangedDateTime<DT> where
    DT: Unpin

impl<DT> UnwindSafe for RangedDateTime<DT> where
    DT: UnwindSafe

Blanket Implementations

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

impl<T> AsRangedCoord for T where
    T: Ranged
[src]

type CoordDescType = T

type Value = <T as Ranged>::ValueType

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> SetParameter for T

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.