fips-md 0.3.0

A framework for simulating arbitrary particle dynamics
Documentation
1
2
3
4
5
6
7
8
9
10
//! Structs related to global state members

use super::FipsType;

#[derive(Debug,PartialEq)]
pub(crate) struct GlobalStateMember {
    pub name: String,
    pub typ: FipsType,
    pub mutable: bool
}