pub struct ScenarioConfig {
pub scenario_type: String,
pub central_body: CentralBodyConfig,
pub orbiter: OrbiterConfig,
}Expand description
Scenario configuration.
Fields§
§scenario_type: String§central_body: CentralBodyConfig§orbiter: OrbiterConfigTrait Implementations§
Source§impl Clone for ScenarioConfig
impl Clone for ScenarioConfig
Source§fn clone(&self) -> ScenarioConfig
fn clone(&self) -> ScenarioConfig
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 ScenarioConfig
impl Debug for ScenarioConfig
Source§impl<'de> Deserialize<'de> for ScenarioConfig
impl<'de> Deserialize<'de> for ScenarioConfig
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 ScenarioConfig
impl RefUnwindSafe for ScenarioConfig
impl Send for ScenarioConfig
impl Sync for ScenarioConfig
impl Unpin for ScenarioConfig
impl UnsafeUnpin for ScenarioConfig
impl UnwindSafe for ScenarioConfig
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