Skip to main content

SpanConverter

Struct SpanConverter 

Source
pub struct SpanConverter<SG: SpanGenerator, SC: SpanConverterFunction<Color = SG::Color>> { /* private fields */ }
Expand description

Composable span pipeline.

Combines a span generator with a span converter: first generates the span, then applies the conversion function to the result.

Port of C++ span_converter<SpanGenerator, SpanConverter>.

Implementations§

Source§

impl<SG: SpanGenerator, SC: SpanConverterFunction<Color = SG::Color>> SpanConverter<SG, SC>

Source

pub fn new(span_gen: SG, span_cnv: SC) -> Self

Source

pub fn generator(&self) -> &SG

Source

pub fn generator_mut(&mut self) -> &mut SG

Source

pub fn converter(&self) -> &SC

Source

pub fn converter_mut(&mut self) -> &mut SC

Trait Implementations§

Source§

impl<SG: SpanGenerator, SC: SpanConverterFunction<Color = SG::Color>> SpanGenerator for SpanConverter<SG, SC>

Source§

type Color = <SG as SpanGenerator>::Color

Source§

fn prepare(&mut self)

Called once before rendering begins.
Source§

fn generate(&mut self, span: &mut [Self::Color], x: i32, y: i32, len: u32)

Generate colors for a horizontal span. Read more

Auto Trait Implementations§

§

impl<SG, SC> Freeze for SpanConverter<SG, SC>
where SG: Freeze, SC: Freeze,

§

impl<SG, SC> RefUnwindSafe for SpanConverter<SG, SC>

§

impl<SG, SC> Send for SpanConverter<SG, SC>
where SG: Send, SC: Send,

§

impl<SG, SC> Sync for SpanConverter<SG, SC>
where SG: Sync, SC: Sync,

§

impl<SG, SC> Unpin for SpanConverter<SG, SC>
where SG: Unpin, SC: Unpin,

§

impl<SG, SC> UnsafeUnpin for SpanConverter<SG, SC>
where SG: UnsafeUnpin, SC: UnsafeUnpin,

§

impl<SG, SC> UnwindSafe for SpanConverter<SG, SC>
where SG: UnwindSafe, SC: 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<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.