//! Structures related to interaction runtime information
pubstructInteractionDetails{/// Number of worker threads for neighbor list construction
pubnum_workers:usize,
/// Skin factor (this factor is multiplied to the cutoff region to guarantee
/// the correctness of the neighbor list for more than one tick)
pubskin_factor:f64,
/// Explicit cell size
pubcell_size:Option<f64>,
/// The neighbor list is rebuild after this number of time steps
pubrebuild_interval:usize}