[][src]Struct plotters_unstable::coord::combinators::NestedRange

pub struct NestedRange<Primary: DiscreteRanged, Secondary: Ranged> { /* fields omitted */ }

A nested coordinate spec which is a discrete coordinate on the top level and for each value in discrete value, there is a secondary coordinate system. And the value is defined as a tuple of primary coordinate value and secondary coordinate value

Trait Implementations

impl<P: DiscreteRanged, S: DiscreteRanged> DiscreteRanged for NestedRange<P, S>[src]

impl<P: DiscreteRanged, S: Ranged> Ranged for NestedRange<P, S>[src]

type FormatOption = NoDefaultFormatting

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 = NestedValue<P::ValueType, S::ValueType>

The type of this value in this range specification

impl<PT, ST, P, S> ValueFormatter<NestedValue<PT, ST>> for NestedRange<P, S> where
    P: Ranged<ValueType = PT> + DiscreteRanged,
    S: Ranged<ValueType = ST>,
    P: ValueFormatter<PT>,
    S: ValueFormatter<ST>, 
[src]

Auto Trait Implementations

impl<Primary, Secondary> RefUnwindSafe for NestedRange<Primary, Secondary> where
    Primary: RefUnwindSafe,
    Secondary: RefUnwindSafe

impl<Primary, Secondary> Send for NestedRange<Primary, Secondary> where
    Primary: Send,
    Secondary: Send

impl<Primary, Secondary> Sync for NestedRange<Primary, Secondary> where
    Primary: Sync,
    Secondary: Sync

impl<Primary, Secondary> Unpin for NestedRange<Primary, Secondary> where
    Primary: Unpin,
    Secondary: Unpin

impl<Primary, Secondary> UnwindSafe for NestedRange<Primary, Secondary> where
    Primary: UnwindSafe,
    Secondary: 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<DC> ReversibleRanged for DC where
    DC: DiscreteRanged
[src]

impl<T> SetParameter for T

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.