pub struct ParallelAxis { /* private fields */ }
Implementations§
Source§impl ParallelAxis
impl ParallelAxis
pub fn new() -> Self
pub fn dim<F: Into<i64>>(self, dim: F) -> Self
pub fn parallel_index<F: Into<i64>>(self, parallel_index: F) -> Self
pub fn realtime(self, realtime: bool) -> 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<E: Into<NameLocation>>(self, name_location: E) -> Self
pub fn name_gap<F: Into<i64>>(self, name_gap: F) -> Self
pub fn inverse(self, inverse: bool) -> Self
pub fn max<F: Into<i64>>(self, max: F) -> Self
pub fn min<F: Into<i64>>(self, min: F) -> Self
pub fn data<S: Into<String>>(self, data: Vec<S>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParallelAxis
impl RefUnwindSafe for ParallelAxis
impl Send for ParallelAxis
impl Sync for ParallelAxis
impl Unpin for ParallelAxis
impl UnwindSafe for ParallelAxis
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