pub struct SymplecticResult {
pub states: Vec<PropState>,
pub n_steps: usize,
}Expand description
Result of a symplectic Störmer-Verlet propagation.
Fields§
§states: Vec<PropState>Trajectory states at each timestep
n_steps: usizeNumber of steps taken
Trait Implementations§
Source§impl Clone for SymplecticResult
impl Clone for SymplecticResult
Source§fn clone(&self) -> SymplecticResult
fn clone(&self) -> SymplecticResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SymplecticResult
impl RefUnwindSafe for SymplecticResult
impl Send for SymplecticResult
impl Sync for SymplecticResult
impl Unpin for SymplecticResult
impl UnwindSafe for SymplecticResult
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