pub enum ScenarioType {
Kepler(KeplerConfig),
NBody(NBodyConfig),
Hohmann(HohmannConfig),
Lagrange(LagrangeConfig),
}Expand description
Scenario type enumeration.
Variants§
Kepler(KeplerConfig)
Two-body Keplerian orbit.
NBody(NBodyConfig)
N-body gravitational system.
Hohmann(HohmannConfig)
Hohmann transfer between circular orbits.
Lagrange(LagrangeConfig)
Lagrange point dynamics.
Trait Implementations§
Source§impl Clone for ScenarioType
impl Clone for ScenarioType
Source§fn clone(&self) -> ScenarioType
fn clone(&self) -> ScenarioType
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 moreSource§impl Debug for ScenarioType
impl Debug for ScenarioType
Source§impl<'de> Deserialize<'de> for ScenarioType
impl<'de> Deserialize<'de> for ScenarioType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScenarioType
impl RefUnwindSafe for ScenarioType
impl Send for ScenarioType
impl Sync for ScenarioType
impl Unpin for ScenarioType
impl UnsafeUnpin for ScenarioType
impl UnwindSafe for ScenarioType
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