pub struct PlotAxis { /* private fields */ }Implementations§
Source§impl PlotAxis
impl PlotAxis
pub fn new() -> Self
Sourcepub fn x_axis(self, x_axis: bool) -> Self
pub fn x_axis(self, x_axis: bool) -> Self
Show or hide the x-axis of the Axis.
Default is true.
Sourcepub fn x_label(self, label: impl IntoIterator<Item = AxisText>) -> Self
pub fn x_label(self, label: impl IntoIterator<Item = AxisText>) -> Self
Set the x-label of the Axis.
Sourcepub fn x_label_side(self, side: AxisLabelSide) -> Self
pub fn x_label_side(self, side: AxisLabelSide) -> Self
Set which side of the x-axis line tick labels render on.
Sourcepub fn y_axis(self, y_axis: bool) -> Self
pub fn y_axis(self, y_axis: bool) -> Self
Show or hide the y-axis of the Axis.
Default is true.
Sourcepub fn y_label(self, label: impl IntoIterator<Item = AxisText>) -> Self
pub fn y_label(self, label: impl IntoIterator<Item = AxisText>) -> Self
Set the y-label of the Axis.
Sourcepub fn y_label_side(self, side: AxisLabelSide) -> Self
pub fn y_label_side(self, side: AxisLabelSide) -> Self
Set which side of the y-axis line tick labels render on.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlotAxis
impl RefUnwindSafe for PlotAxis
impl Send for PlotAxis
impl Sync for PlotAxis
impl Unpin for PlotAxis
impl UnsafeUnpin for PlotAxis
impl UnwindSafe for PlotAxis
Blanket Implementations§
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().