pub struct PropulsionSystemData {
pub power_setting: f32,
pub engine_rpm: f32,
}Expand description
6.2.68 Propulsion System Data record
Fields§
§power_setting: f32§engine_rpm: f32Implementations§
Source§impl PropulsionSystemData
impl PropulsionSystemData
pub fn with_power_setting(self, power_setting: f32) -> Self
pub fn with_engine_rpm(self, engine_rpm: f32) -> Self
Trait Implementations§
Source§impl Clone for PropulsionSystemData
impl Clone for PropulsionSystemData
Source§fn clone(&self) -> PropulsionSystemData
fn clone(&self) -> PropulsionSystemData
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 PropulsionSystemData
impl Debug for PropulsionSystemData
Source§impl Default for PropulsionSystemData
impl Default for PropulsionSystemData
Source§fn default() -> PropulsionSystemData
fn default() -> PropulsionSystemData
Returns the “default value” for a type. Read more
Source§impl PartialEq for PropulsionSystemData
impl PartialEq for PropulsionSystemData
impl StructuralPartialEq for PropulsionSystemData
Auto Trait Implementations§
impl Freeze for PropulsionSystemData
impl RefUnwindSafe for PropulsionSystemData
impl Send for PropulsionSystemData
impl Sync for PropulsionSystemData
impl Unpin for PropulsionSystemData
impl UnwindSafe for PropulsionSystemData
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