[−][src]Struct plotters_unstable::prelude::NestedRange
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]
fn size(&self) -> usize
[src]
fn index_of(&self, value: &Self::ValueType) -> Option<usize>
[src]
fn from_index(&self, index: usize) -> Option<Self::ValueType>
[src]
fn values(&self) -> DiscreteValueIter<'_, Self> where
Self: Sized,
[src]
Self: Sized,
fn previous(&self, value: &Self::ValueType) -> Option<Self::ValueType>
[src]
fn next(&self, value: &Self::ValueType) -> Option<Self::ValueType>
[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
fn range(&self) -> Range<Self::ValueType>
[src]
fn map(&self, value: &Self::ValueType, limit: (i32, i32)) -> i32
[src]
fn key_points<Hint: KeyPointHint>(&self, hint: Hint) -> Vec<Self::ValueType>
[src]
fn axis_pixel_range(&self, limit: (i32, i32)) -> Range<i32>
[src]
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]
P: Ranged<ValueType = PT> + DiscreteRanged,
S: Ranged<ValueType = ST>,
P: ValueFormatter<PT>,
S: ValueFormatter<ST>,
fn format(value: &NestedValue<PT, ST>) -> String
[src]
Auto Trait Implementations
impl<Primary, Secondary> RefUnwindSafe for NestedRange<Primary, Secondary> where
Primary: RefUnwindSafe,
Secondary: RefUnwindSafe,
Primary: RefUnwindSafe,
Secondary: RefUnwindSafe,
impl<Primary, Secondary> Send for NestedRange<Primary, Secondary> where
Primary: Send,
Secondary: Send,
Primary: Send,
Secondary: Send,
impl<Primary, Secondary> Sync for NestedRange<Primary, Secondary> where
Primary: Sync,
Secondary: Sync,
Primary: Sync,
Secondary: Sync,
impl<Primary, Secondary> Unpin for NestedRange<Primary, Secondary> where
Primary: Unpin,
Secondary: Unpin,
Primary: Unpin,
Secondary: Unpin,
impl<Primary, Secondary> UnwindSafe for NestedRange<Primary, Secondary> where
Primary: UnwindSafe,
Secondary: UnwindSafe,
Primary: UnwindSafe,
Secondary: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> AsRangedCoord for T where
T: Ranged,
[src]
T: Ranged,
type CoordDescType = T
type Value = <T as Ranged>::ValueType
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<DC> ReversibleRanged for DC where
DC: DiscreteRanged,
[src]
DC: DiscreteRanged,
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,