Struct LogRange
pub struct LogRange<V>(pub Range<V>)
where
V: LogScalable;๐Deprecated: LogRange is deprecated, use IntoLogRange trait method instead
Available on crate feature
plot only.Expand description
The logarithmic coordinate decorator. This decorator is used to make the axis rendered as logarithmically.
Tuple Fieldsยง
ยง0: Range<V>๐Deprecated: LogRange is deprecated, use IntoLogRange trait method instead
Trait Implementationsยง
ยงimpl<V> AsRangedCoord for LogRange<V>where
V: LogScalable,
impl<V> AsRangedCoord for LogRange<V>where
V: LogScalable,
ยงtype CoordDescType = LogCoord<V>
type CoordDescType = LogCoord<V>
Type to describe a coordinate system
ยงimpl<V> Clone for LogRange<V>where
V: Clone + LogScalable,
impl<V> Clone for LogRange<V>where
V: Clone + LogScalable,
Auto Trait Implementationsยง
impl<V> Freeze for LogRange<V>where
V: Freeze,
impl<V> RefUnwindSafe for LogRange<V>where
V: RefUnwindSafe,
impl<V> Send for LogRange<V>where
V: Send,
impl<V> Sync for LogRange<V>where
V: Sync,
impl<V> Unpin for LogRange<V>where
V: Unpin,
impl<V> UnwindSafe for LogRange<V>where
V: UnwindSafe,
Blanket Implementationsยง
ยงimpl<T> BindKeyPointMethod for Twhere
T: AsRangedCoord,
impl<T> BindKeyPointMethod for Twhere
T: AsRangedCoord,
ยงfn with_key_point_func<F>(
self,
func: F,
) -> WithKeyPointMethod<Self::CoordDescType>
fn with_key_point_func<F>( self, func: F, ) -> WithKeyPointMethod<Self::CoordDescType>
Bind a existing coordinate spec with a given key points algorithm. See WithKeyPointMethod for more details.
Example: Read more
ยงimpl<T> BindKeyPoints for Twhere
T: AsRangedCoord,
impl<T> BindKeyPoints for Twhere
T: AsRangedCoord,
ยงfn with_key_points(
self,
points: Vec<Self::Value>,
) -> WithKeyPoints<Self::CoordDescType>
fn with_key_points( self, points: Vec<Self::Value>, ) -> WithKeyPoints<Self::CoordDescType>
Bind a existing coordinate spec with a given key points vector. See WithKeyPoints for more details.
Example: Read more
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
ยงimpl<T> Instrument for T
impl<T> Instrument for T
ยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
ยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreยงimpl<T> IntoLinspace for Twhere
T: AsRangedCoord,
impl<T> IntoLinspace for Twhere
T: AsRangedCoord,
ยงimpl<R> IntoPartialAxis for Rwhere
R: AsRangedCoord,
impl<R> IntoPartialAxis for Rwhere
R: AsRangedCoord,
ยงfn 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