pub struct AtmosphericModel {
pub rho_0: f64,
pub scale_height: f64,
}Expand description
Atmospheric model for drag calculation.
Fields§
§rho_0: f64Sea-level density (kg/m³).
scale_height: f64Scale height (m).
Implementations§
Trait Implementations§
Source§impl Clone for AtmosphericModel
impl Clone for AtmosphericModel
Source§fn clone(&self) -> AtmosphericModel
fn clone(&self) -> AtmosphericModel
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 AtmosphericModel
impl Debug for AtmosphericModel
Auto Trait Implementations§
impl Freeze for AtmosphericModel
impl RefUnwindSafe for AtmosphericModel
impl Send for AtmosphericModel
impl Sync for AtmosphericModel
impl Unpin for AtmosphericModel
impl UnsafeUnpin for AtmosphericModel
impl UnwindSafe for AtmosphericModel
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