pub struct Stage3<P: PlotIterator, A, B, BB> { /* private fields */ }Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<P, A, B, BB> Freeze for Stage3<P, A, B, BB>
impl<P, A, B, BB> RefUnwindSafe for Stage3<P, A, B, BB>where
BB: RefUnwindSafe,
A: RefUnwindSafe,
B: RefUnwindSafe,
P: RefUnwindSafe,
<<P as PlotIterator>::L as Point>::X: RefUnwindSafe,
<<P as PlotIterator>::L as Point>::Y: RefUnwindSafe,
impl<P, A, B, BB> Send for Stage3<P, A, B, BB>
impl<P, A, B, BB> Sync for Stage3<P, A, B, BB>
impl<P, A, B, BB> Unpin for Stage3<P, A, B, BB>
impl<P, A, B, BB> UnwindSafe for Stage3<P, A, B, BB>where
BB: UnwindSafe,
A: UnwindSafe,
B: UnwindSafe,
P: UnwindSafe,
<<P as PlotIterator>::L as Point>::X: UnwindSafe,
<<P as PlotIterator>::L as Point>::Y: UnwindSafe,
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<E> Elem for Ewhere
E: ElemOuter,
impl<E> Elem for Ewhere
E: ElemOuter,
type Tail = ()
fn render_head(self, writer: ElemWrite<'_>) -> Result<<E as Elem>::Tail, Error>
Source§fn render_closure<K>(
self,
w: ElemWrite<'_>,
func: impl FnOnce(ElemWrite<'_>) -> Result<K, Error>,
) -> Result<K, Error>where
Self: Sized,
fn render_closure<K>(
self,
w: ElemWrite<'_>,
func: impl FnOnce(ElemWrite<'_>) -> Result<K, Error>,
) -> Result<K, Error>where
Self: Sized,
👎Deprecated
Source§fn chain<R>(self, other: R) -> Chain<Self, R>
fn chain<R>(self, other: R) -> Chain<Self, R>
Render all of Self and head of other, store tail of other.
Source§fn append<R>(self, bottom: R) -> Append<Self, R>
fn append<R>(self, bottom: R) -> Append<Self, R>
Render head of Self, and all of other, store tail of self.
Source§fn inline(self) -> Inliner<Self>where
Self: Sized,
fn inline(self) -> Inliner<Self>where
Self: Sized,
Force this element and descendants to be written out
inline.