Struct four_bar::plot::coord::combinators::WithKeyPoints
source · [−]pub struct WithKeyPoints<Inner> where
Inner: Ranged, { /* private fields */ }plot only.Expand description
The coordinate decorator that binds a key point vector. Normally, all the ranged coordinate implements its own keypoint algorithm to determine how to render the tick mark and mesh grid. This decorator allows customized tick mark specifiied by vector. See BindKeyPoints::with_key_points for details. Note: For any coordinate spec wrapped by this decorator, the maxium number of labels configured by MeshStyle will be ignored and the key point function will always returns the entire vector
Implementations
sourceimpl<I> WithKeyPoints<I> where
I: Ranged,
impl<I> WithKeyPoints<I> where
I: Ranged,
sourcepub fn with_light_points<T>(self, iter: T) -> WithKeyPoints<I> where
T: IntoIterator<Item = <I as Ranged>::ValueType>,
pub fn with_light_points<T>(self, iter: T) -> WithKeyPoints<I> where
T: IntoIterator<Item = <I as Ranged>::ValueType>,
Specify the light key points, which is used to render the light mesh line
sourcepub fn bold_points(&self) -> &[<I as Ranged>::ValueType]
pub fn bold_points(&self) -> &[<I as Ranged>::ValueType]
Get a reference to the bold points
sourcepub fn bold_points_mut(&mut self) -> &mut [<I as Ranged>::ValueType]
pub fn bold_points_mut(&mut self) -> &mut [<I as Ranged>::ValueType]
Get a mut reference to the bold points
sourcepub fn light_points(&self) -> &[<I as Ranged>::ValueType]
pub fn light_points(&self) -> &[<I as Ranged>::ValueType]
Get a reference to light key points
sourcepub fn light_points_mut(&mut self) -> &mut [<I as Ranged>::ValueType]
pub fn light_points_mut(&mut self) -> &mut [<I as Ranged>::ValueType]
Get a mut reference to the light key points
Trait Implementations
sourceimpl<R> DiscreteRanged for WithKeyPoints<R> where
R: DiscreteRanged,
<R as Ranged>::ValueType: Clone,
impl<R> DiscreteRanged for WithKeyPoints<R> where
R: DiscreteRanged,
<R as Ranged>::ValueType: Clone,
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: &<WithKeyPoints<R> as Ranged>::ValueType
) -> Option<usize>
fn index_of(
&self,
value: &<WithKeyPoints<R> as Ranged>::ValueType
) -> Option<usize>
Map a value to the index Read more
sourcefn from_index(
&self,
index: usize
) -> Option<<WithKeyPoints<R> as Ranged>::ValueType>
fn from_index(
&self,
index: usize
) -> Option<<WithKeyPoints<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 WithKeyPoints<R> where
R: Ranged,
<R as Ranged>::ValueType: Clone,
impl<R> Ranged for WithKeyPoints<R> where
R: Ranged,
<R as Ranged>::ValueType: Clone,
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 map(
&self,
value: &<WithKeyPoints<R> as Ranged>::ValueType,
limit: (i32, i32)
) -> i32
fn map(
&self,
value: &<WithKeyPoints<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<<WithKeyPoints<R> as Ranged>::ValueType, Global> where
Hint: KeyPointHint,
fn key_points<Hint>(
&self,
hint: Hint
) -> Vec<<WithKeyPoints<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<Inner> RefUnwindSafe for WithKeyPoints<Inner> where
Inner: RefUnwindSafe,
<Inner as Ranged>::ValueType: RefUnwindSafe,
impl<Inner> Send for WithKeyPoints<Inner> where
Inner: Send,
<Inner as Ranged>::ValueType: Send,
impl<Inner> Sync for WithKeyPoints<Inner> where
Inner: Sync,
<Inner as Ranged>::ValueType: Sync,
impl<Inner> Unpin for WithKeyPoints<Inner> where
Inner: Unpin,
<Inner as Ranged>::ValueType: Unpin,
impl<Inner> UnwindSafe for WithKeyPoints<Inner> where
Inner: UnwindSafe,
<Inner as Ranged>::ValueType: UnwindSafe,
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