#[repr(C)]pub struct CAtom {
pub atomic_number: u64,
pub x: f64,
pub y: f64,
pub z: f64,
pub atom_id: u64,
pub mass: f64,
pub is_fixed: bool,
pub vx: f64,
pub vy: f64,
pub vz: f64,
pub has_velocity: bool,
}Fields§
§atomic_number: u64§x: f64§y: f64§z: f64§atom_id: u64§mass: f64§is_fixed: bool§vx: f64§vy: f64§vz: f64§has_velocity: boolAuto Trait Implementations§
impl Freeze for CAtom
impl RefUnwindSafe for CAtom
impl Send for CAtom
impl Sync for CAtom
impl Unpin for CAtom
impl UnsafeUnpin for CAtom
impl UnwindSafe for CAtom
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more