pub struct Parallel { /* private fields */ }
Implementations§
Source§impl Parallel
impl Parallel
pub fn new() -> Self
pub fn id<S: Into<String>>(self, id: S) -> Self
pub fn coordinate_system<C: Into<CoordinateSystem>>( self, coordinate_system: C, ) -> Self
pub fn parallel_index<F: Into<i64>>(self, parallel_index: F) -> Self
pub fn name<S: Into<String>>(self, name: S) -> Self
pub fn color_by<C: Into<ColorBy>>(self, color_by: C) -> Self
pub fn line_style<S: Into<LineStyle>>(self, line_style: S) -> Self
pub fn emphasis<E: Into<Emphasis>>(self, emphasis: E) -> Self
pub fn inactive_opacity<F: Into<i64>>(self, inactive_opacity: F) -> Self
pub fn active_opacity<F: Into<i64>>(self, active_opacity: F) -> Self
pub fn realtime(self, realtime: bool) -> Self
pub fn smooth<F: Into<i64>>(self, smooth: F) -> Self
pub fn progressive<F: Into<i64>>(self, progressive: F) -> Self
pub fn progressive_threshold<F: Into<i64>>( self, progressive_threshold: F, ) -> Self
pub fn progressive_chunk_mode<P: Into<ProgressiveChunkMode>>( self, progressive_chunk_mode: P, ) -> Self
pub fn data<D: Into<DataPoint>>(self, data: Vec<D>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Parallel
impl RefUnwindSafe for Parallel
impl Send for Parallel
impl Sync for Parallel
impl Unpin for Parallel
impl UnwindSafe for Parallel
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