pub struct ParallelAxisDefault { /* private fields */ }
Implementations§
Source§impl ParallelAxisDefault
impl ParallelAxisDefault
pub fn new() -> Self
pub fn type_<S: Into<AxisType>>(self, type_: S) -> Self
pub fn name<S: Into<String>>(self, name: S) -> Self
pub fn name_location<S: Into<NameLocation>>(self, name_location: S) -> Self
pub fn name_text_style<T: Into<TextStyle>>(self, name_text_style: T) -> Self
pub fn name_gap<F: Into<i64>>(self, name_gap: F) -> Self
pub fn name_rotate<F: Into<i64>>(self, name_rotate: F) -> Self
pub fn inverse(self, inverse: bool) -> Self
pub fn boundary_gap<B: Into<BoundaryGap>>(self, boundary_gap: B) -> Self
pub fn min<F: Into<i64>>(self, min: F) -> Self
pub fn max<F: Into<i64>>(self, max: F) -> Self
pub fn scale(self, scale: bool) -> Self
pub fn split_number<F: Into<i64>>(self, split_number: F) -> Self
pub fn min_interval<F: Into<i64>>(self, min_interval: F) -> Self
pub fn max_interval<F: Into<i64>>(self, max_interval: F) -> Self
pub fn interval<F: Into<i64>>(self, interval: F) -> Self
pub fn log_base<F: Into<i64>>(self, log_base: F) -> Self
pub fn silent(self, silent: bool) -> Self
pub fn trigger_event(self, trigger_event: bool) -> Self
pub fn axis_line<A: Into<AxisLine>>(self, axis_line: A) -> Self
pub fn axis_tick<A: Into<AxisTick>>(self, axis_tick: A) -> Self
pub fn axis_label<A: Into<AxisLabel>>(self, axis_label: A) -> Self
pub fn split_line<S: Into<SplitLine>>(self, split_line: S) -> Self
pub fn data<S: Into<String>>(self, data: Vec<S>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParallelAxisDefault
impl RefUnwindSafe for ParallelAxisDefault
impl Send for ParallelAxisDefault
impl Sync for ParallelAxisDefault
impl Unpin for ParallelAxisDefault
impl UnwindSafe for ParallelAxisDefault
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> 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