pub trait AtomPosAnalysisMut: AtomPosAnalysis {
// Provided methods
fn atoms_ptr_mut(&mut self) -> *mut Atom { ... }
fn coords_ptr_mut(&mut self) -> *mut Pos { ... }
}Expand description
Umbrella trait for implementing read-write analysis traits involving atoms and positions
Provided Methods§
fn atoms_ptr_mut(&mut self) -> *mut Atom
fn coords_ptr_mut(&mut self) -> *mut Pos
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.