Struct four_bar::plot::coord::combinators::WithKeyPointMethod
source · [−]pub struct WithKeyPointMethod<R> where
R: Ranged, { /* private fields */ }plot only.Expand description
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
sourceimpl<R> WithKeyPointMethod<R> where
R: Ranged,
impl<R> WithKeyPointMethod<R> where
R: Ranged,
sourcepub fn with_light_point_func<F>(self, func: F) -> WithKeyPointMethod<R> where
F: 'static + Fn(usize) -> Vec<<R as Ranged>::ValueType, Global>,
pub fn with_light_point_func<F>(self, func: F) -> WithKeyPointMethod<R> where
F: 'static + Fn(usize) -> Vec<<R as Ranged>::ValueType, Global>,
Define the light key point algorithm, by default this returns an empty set
Trait Implementations
sourceimpl<R> DiscreteRanged for WithKeyPointMethod<R> where
R: DiscreteRanged,
impl<R> DiscreteRanged for WithKeyPointMethod<R> where
R: DiscreteRanged,
sourcefn size(&self) -> usize
fn size(&self) -> usize
Get the number of element in the range Note: we assume that all the ranged discrete coordinate has finite value Read more
sourcefn index_of(
&self,
value: &<WithKeyPointMethod<R> as Ranged>::ValueType
) -> Option<usize>
fn index_of(
&self,
value: &<WithKeyPointMethod<R> as Ranged>::ValueType
) -> Option<usize>
Map a value to the index Read more
sourcefn from_index(
&self,
index: usize
) -> Option<<WithKeyPointMethod<R> as Ranged>::ValueType>
fn from_index(
&self,
index: usize
) -> Option<<WithKeyPointMethod<R> as Ranged>::ValueType>
Reverse map the index to the value Read more
sourcefn values(&self) -> DiscreteValueIter<'_, Self>
fn values(&self) -> DiscreteValueIter<'_, Self>
Return a iterator that iterates over the all possible values Read more
sourceimpl<R> Ranged for WithKeyPointMethod<R> where
R: Ranged,
impl<R> Ranged for WithKeyPointMethod<R> where
R: Ranged,
type FormatOption = <R as Ranged>::FormatOption
type FormatOption = <R as Ranged>::FormatOption
This marker decides if Plotters default ValueFormatter implementation should be used. This assicated type can be one of follow two types: Read more
sourcefn range(&self) -> Range<<WithKeyPointMethod<R> as Ranged>::ValueType>
fn range(&self) -> Range<<WithKeyPointMethod<R> as Ranged>::ValueType>
Get the range of this value
sourcefn map(
&self,
value: &<WithKeyPointMethod<R> as Ranged>::ValueType,
limit: (i32, i32)
) -> i32
fn map(
&self,
value: &<WithKeyPointMethod<R> as Ranged>::ValueType,
limit: (i32, i32)
) -> i32
This function maps the value to i32, which is the drawing coordinate
sourcefn key_points<Hint>(
&self,
hint: Hint
) -> Vec<<WithKeyPointMethod<R> as Ranged>::ValueType, Global> where
Hint: KeyPointHint,
fn key_points<Hint>(
&self,
hint: Hint
) -> Vec<<WithKeyPointMethod<R> as Ranged>::ValueType, Global> where
Hint: KeyPointHint,
This function gives the key points that we can draw a grid based on this
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
sourceimpl<T> AsRangedCoord for T where
T: Ranged,
impl<T> AsRangedCoord for T where
T: Ranged,
type CoordDescType = T
type Value = <T as Ranged>::ValueType
sourceimpl<T> BindKeyPointMethod for T where
T: AsRangedCoord,
impl<T> BindKeyPointMethod for T where
T: AsRangedCoord,
sourcefn with_key_point_func<F>(
self,
func: F
) -> WithKeyPointMethod<Self::CoordDescType> where
F: 'static + Fn(usize) -> Vec<Self::Value, Global>,
fn with_key_point_func<F>(
self,
func: F
) -> WithKeyPointMethod<Self::CoordDescType> where
F: 'static + Fn(usize) -> Vec<Self::Value, Global>,
Bind a existing coordinate spec with a given key points algorithm. See WithKeyPointMethod for more details. Example: Read more
sourceimpl<T> BindKeyPoints for T where
T: AsRangedCoord,
impl<T> BindKeyPoints for T where
T: AsRangedCoord,
sourcefn with_key_points(
self,
points: Vec<Self::Value, Global>
) -> WithKeyPoints<Self::CoordDescType>
fn with_key_points(
self,
points: Vec<Self::Value, Global>
) -> WithKeyPoints<Self::CoordDescType>
Bind a existing coordinate spec with a given key points vector. See WithKeyPoints for more details. Example: Read more
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> IntoLinspace for T where
T: AsRangedCoord,
impl<T> IntoLinspace for T where
T: AsRangedCoord,
sourcefn step<S>(self, val: S) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>> where
S: Clone,
Self::Value: Add<S>,
Self::Value: PartialOrd<Self::Value>,
Self::Value: Clone,
<Self::Value as Add<S>>::Output == Self::Value,
fn step<S>(self, val: S) -> Linspace<Self::CoordDescType, S, Exact<Self::Value>> where
S: Clone,
Self::Value: Add<S>,
Self::Value: PartialOrd<Self::Value>,
Self::Value: Clone,
<Self::Value as Add<S>>::Output == Self::Value,
Set the step value, make a linspace coordinate from the given range. By default the matching method use the exact match Read more
sourceimpl<R> IntoPartialAxis for R where
R: AsRangedCoord,
impl<R> IntoPartialAxis for R where
R: AsRangedCoord,
sourcefn partial_axis(
self,
axis_range: Range<<Self::CoordDescType as Ranged>::ValueType>
) -> PartialAxis<Self::CoordDescType>
fn partial_axis(
self,
axis_range: Range<<Self::CoordDescType as Ranged>::ValueType>
) -> PartialAxis<Self::CoordDescType>
Make the partial axis Read more