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

pub struct WithKeyPointMethod<R: Ranged> { /* fields omitted */ }

The coordinate decorator that allows customized keypoint algorithms. Normally, all the coordinate spec implements its own key point algorith But this decorator allows you override the pre-defined key point algorithm.

To use this decorator, see BindKeyPointMethod::with_key_point_func

Implementations

impl<R: Ranged> WithKeyPointMethod<R>[src]

pub fn with_light_point_func<F: Fn(usize) -> Vec<R::ValueType> + 'static>(
    self,
    func: F
) -> Self
[src]

Define the light key point algorithm, by default this returns an empty set

Trait Implementations

impl<R: DiscreteRanged> DiscreteRanged for WithKeyPointMethod<R>[src]

impl<R: Ranged> Ranged for WithKeyPointMethod<R>[src]

type ValueType = R::ValueType

The type of this value in this range specification

type FormatOption = R::FormatOption

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

Auto Trait Implementations

impl<R> !RefUnwindSafe for WithKeyPointMethod<R>

impl<R> !Send for WithKeyPointMethod<R>

impl<R> !Sync for WithKeyPointMethod<R>

impl<R> Unpin for WithKeyPointMethod<R> where
    R: Unpin

impl<R> !UnwindSafe for WithKeyPointMethod<R>

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.

impl<R> ValueFormatter<<R as Ranged>::ValueType> for R where
    R: Ranged<FormatOption = DefaultFormatting>,
    <R as Ranged>::ValueType: Debug
[src]