Struct plasma::PlasmaInterCalcProducer

source ·
pub struct PlasmaInterCalcProducer<'a, P: 'a + PhaseAmpsSelect<'a> + ?Sized>(/* private fields */);
Expand description

Provides a default implementation of a IntermediateCalculatorProducer.

Trait Implementations§

source§

impl<'a, P> IntermediateCalculatorProducer<'a, P, f32> for PlasmaInterCalcProducer<'a, P>
where P: PhaseAmpsSelect<'a> + ?Sized,

source§

type CalcIterH = PlasmaMixIter<'a, P>

Provide an iterator implementation which produce IntermediateCalculator tools. The iterator must be a ExactSizeIterator with exactly the same length as the associated Mixer::IntermediateH array’s number of elements.
source§

type CalcIterV = PlasmaMixIter<'a, P>

Provide an iterator implementation which produce IntermediateCalculator tools. The iterator must be a ExactSizeIterator with exactly the same length as the associated Mixer::IntermediateV array’s number of elements.
source§

type LineCalcH = PlasmaLineCalc

Provide an implementation of a IntermediateCalculator for horizontal intermediate data.
source§

type LineCalcV = PlasmaLineCalc

Provide an implementation of a IntermediateCalculator for vertical intermediate data.
source§

fn compose_h_iter(pa: &'a P) -> Self::CalcIterH

Should return an instance of a IntermediateCalculatorProducer::LineCalcH. The input data references an implementation of PhaseAmpsSelect tool.
source§

fn compose_v_iter(pa: &'a P) -> Self::CalcIterV

Should return an instance of a IntermediateCalculatorProducer::LineCalcV. The input data references an implementation of PhaseAmpsSelect tool.

Auto Trait Implementations§

§

impl<'a, P> Freeze for PlasmaInterCalcProducer<'a, P>
where P: ?Sized,

§

impl<'a, P> RefUnwindSafe for PlasmaInterCalcProducer<'a, P>
where P: RefUnwindSafe + ?Sized,

§

impl<'a, P> Send for PlasmaInterCalcProducer<'a, P>
where P: Sync + ?Sized,

§

impl<'a, P> Sync for PlasmaInterCalcProducer<'a, P>
where P: Sync + ?Sized,

§

impl<'a, P> Unpin for PlasmaInterCalcProducer<'a, P>
where P: ?Sized,

§

impl<'a, P> UnwindSafe for PlasmaInterCalcProducer<'a, P>
where P: RefUnwindSafe + ?Sized,

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.
source§

impl<'a, T> ICProducer<'a> for T