Trait rusty_kernel_tools::particle_container::ParticleContainerAccessor[][src]

pub trait ParticleContainerAccessor {
    type FloatingPointType: RealType;
    fn sources(&self) -> ArrayView2<'_, Self::FloatingPointType>;
fn targets(&self) -> ArrayView2<'_, Self::FloatingPointType>; }

Associated Types

Required methods

Return a non-owning representation of the sources.

Return a non-owning representation of the targets.

Implementors