[−][src]Struct plotters_unstable::coord::combinators::WithKeyPointMethod
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]
self,
func: F
) -> Self
Define the light key point algorithm, by default this returns an empty set
Trait Implementations
impl<R: DiscreteRanged> DiscreteRanged for WithKeyPointMethod<R>
[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<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
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]
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,
R: Unpin,
impl<R> !UnwindSafe for WithKeyPointMethod<R>
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<R> ValueFormatter<<R as Ranged>::ValueType> for R where
R: Ranged<FormatOption = DefaultFormatting>,
<R as Ranged>::ValueType: Debug,
[src]
R: Ranged<FormatOption = DefaultFormatting>,
<R as Ranged>::ValueType: Debug,