molar 1.3.4

Molar is a rust library for analysis of MD trajectories and molecular modeling
Documentation
use crate::prelude::*;

/// Holds immutable reference to [Atom] and [Pos] and particle id.
#[derive(Debug)]
pub struct Particle<'a> {
    pub id: usize,
    pub atom: &'a Atom,
    pub pos: &'a Pos,
}

/// Holds mutable reference to [Atom] and [Pos] and particle id.
#[derive(Debug)]
pub struct ParticleMut<'a> {
    pub id: usize,
    pub atom: &'a mut Atom,
    pub pos: &'a mut Pos,
}

impl<'a> From<ParticleMut<'a>> for Particle<'a> {
    fn from(p: ParticleMut<'a>) -> Self {
        Particle {
            id: p.id,
            atom: p.atom,
            pos: p.pos,
        }
    }
}

//------------------------------------------------------

impl LenProvider for Particle<'_> {
    fn len(&self) -> usize {
        1
    }
}

impl IndexProvider for Particle<'_> {
    unsafe fn get_index_unchecked(&self, i: usize) -> usize {
        if i > 0 {
            panic!("single particle can only be accessed with id=0, not {i}")
        } else {
            self.id
        }
    }

    fn iter_index(&self) -> impl ExactSizeIterator<Item = usize> {
        std::iter::once(self.id)
    }
}

impl PosProvider for Particle<'_> {
    unsafe fn coords_ptr(&self) -> *const Pos {
        self.pos as *const Pos
    }

    // Override iter_pos to avoid index indirection (particle has a direct pos ptr)
    fn iter_pos(&self) -> impl PosIterator<'_> {
        std::iter::once(self.pos)
    }

    unsafe fn get_pos_unchecked(&self, _i: usize) -> &Pos {
        self.pos
    }
}

impl AtomProvider for Particle<'_> {
    unsafe fn atoms_ptr(&self) -> *const Atom {
        self.atom as *const Atom
    }

    // Override iter_atoms to avoid index indirection
    fn iter_atoms(&self) -> impl AtomIterator<'_> {
        std::iter::once(self.atom)
    }

    unsafe fn get_atom_unchecked(&self, _i: usize) -> &Atom {
        self.atom
    }
}

//-----------------------------------------------------------------