Struct rusty_green_kernel::evaluators::base::DirectEvaluator[][src]

pub struct DirectEvaluator<P: ParticleContainerAccessor, R> { /* fields omitted */ }

This type defines an Evaluator consisting of a ParticleSpace and a KernelType. The generic

Trait Implementations

impl<P: ParticleContainerAccessor> ComplexDirectEvaluator for DirectEvaluator<P, Complex<P::FloatingPointType>>[src]

impl<P: ParticleContainerAccessor, R> DirectEvaluatorAccessor for DirectEvaluator<P, R>[src]

type FloatingPointType = P::FloatingPointType

impl<P: ParticleContainerAccessor> RealDirectEvaluator for DirectEvaluator<P, P::FloatingPointType>[src]

Auto Trait Implementations

impl<P, R> RefUnwindSafe for DirectEvaluator<P, R> where
    P: RefUnwindSafe,
    R: RefUnwindSafe

impl<P, R> Send for DirectEvaluator<P, R> where
    P: Send,
    R: Send

impl<P, R> Sync for DirectEvaluator<P, R> where
    P: Sync,
    R: Sync

impl<P, R> Unpin for DirectEvaluator<P, R> where
    P: Unpin,
    R: Unpin

impl<P, R> UnwindSafe for DirectEvaluator<P, R> where
    P: UnwindSafe,
    R: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.