pub enum IntegrationMethod {
Euler,
Heun,
RungeKutta4,
Midpoint,
}Expand description
Available numerical integration methods.
Variants§
Trait Implementations§
Source§impl Clone for IntegrationMethod
impl Clone for IntegrationMethod
Source§fn clone(&self) -> IntegrationMethod
fn clone(&self) -> IntegrationMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntegrationMethod
impl Debug for IntegrationMethod
Source§impl PartialEq for IntegrationMethod
impl PartialEq for IntegrationMethod
Source§fn eq(&self, other: &IntegrationMethod) -> bool
fn eq(&self, other: &IntegrationMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IntegrationMethod
impl Eq for IntegrationMethod
impl StructuralPartialEq for IntegrationMethod
Auto Trait Implementations§
impl Freeze for IntegrationMethod
impl RefUnwindSafe for IntegrationMethod
impl Send for IntegrationMethod
impl Sync for IntegrationMethod
impl Unpin for IntegrationMethod
impl UnsafeUnpin for IntegrationMethod
impl UnwindSafe for IntegrationMethod
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