Stage3

Struct Stage3 

Source
pub struct Stage3<P: PlotIterator, A, B, BB> { /* private fields */ }

Implementations§

Source§

impl<X: PlotNum, Y: PlotNum, L: Point<X = X, Y = Y>, P, A, B, BB> Stage3<P, A, B, BB>
where P: PlotIterator<L = L>, A: TickDist<Num = X>, B: TickDist<Num = Y>, BB: BaseFmt,

Source

pub fn append_to<E: Elem>(self, elem: E) -> Stage4<Append<E, Self>>

Source

pub fn headless(self) -> Stage4<Self>

Trait Implementations§

Source§

impl<X: PlotNum, Y: PlotNum, L: Point<X = X, Y = Y>, P, A, B, BB> ElemOuter for Stage3<P, A, B, BB>
where P: PlotIterator<L = L>, A: TickDist<Num = X>, B: TickDist<Num = Y>, BB: BaseFmt,

Source§

fn render<'a>( self, writer: ElemStack<'a, Sentinel>, ) -> Result<ElemStack<'a, Sentinel>, Error>

Auto Trait Implementations§

§

impl<P, A, B, BB> Freeze for Stage3<P, A, B, BB>
where BB: Freeze, A: Freeze, B: Freeze, P: Freeze, <<P as PlotIterator>::L as Point>::X: Freeze, <<P as PlotIterator>::L as Point>::Y: Freeze,

§

impl<P, A, B, BB> RefUnwindSafe for Stage3<P, A, B, BB>

§

impl<P, A, B, BB> Send for Stage3<P, A, B, BB>
where BB: Send, A: Send, B: Send, P: Send, <<P as PlotIterator>::L as Point>::X: Send, <<P as PlotIterator>::L as Point>::Y: Send,

§

impl<P, A, B, BB> Sync for Stage3<P, A, B, BB>
where BB: Sync, A: Sync, B: Sync, P: Sync, <<P as PlotIterator>::L as Point>::X: Sync, <<P as PlotIterator>::L as Point>::Y: Sync,

§

impl<P, A, B, BB> Unpin for Stage3<P, A, B, BB>
where BB: Unpin, A: Unpin, B: Unpin, P: Unpin, <<P as PlotIterator>::L as Point>::X: Unpin, <<P as PlotIterator>::L as Point>::Y: Unpin,

§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<E> Elem for E
where E: ElemOuter,

Source§

type Tail = ()

Source§

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,

👎Deprecated
Source§

fn chain<R>(self, other: R) -> Chain<Self, R>
where R: Elem, Self: Sized,

Render all of Self and head of other, store tail of other.
Source§

fn append<R>(self, bottom: R) -> Append<Self, R>
where R: Elem, Self: Sized,

Render head of Self, and all of other, store tail of self.
Source§

fn inline(self) -> Inliner<Self>
where Self: Sized,

Force this element and descendants to be written out inline.
Source§

fn with_tab(self, new_tab: &'static str) -> WithTab<Self>
where Self: Sized,

Source§

fn some(self) -> Option<Self>
where Self: Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<E> Locked for E
where E: ElemOuter,