pub struct BasicProperties<'a> {
pub name: &'a str,
pub pressure: f64,
pub temperature: f64,
pub cp: f64,
pub cv: f64,
pub cp_cv: f64,
pub gas_const: f64,
pub crank_angle: Option<f64>,
}Fields§
§name: &'a str§pressure: f64§temperature: f64§cp: f64§cv: f64§cp_cv: f64§gas_const: f64§crank_angle: Option<f64>Trait Implementations§
Source§impl<'a> Clone for BasicProperties<'a>
impl<'a> Clone for BasicProperties<'a>
Source§fn clone(&self) -> BasicProperties<'a>
fn clone(&self) -> BasicProperties<'a>
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<'a> Debug for BasicProperties<'a>
impl<'a> Debug for BasicProperties<'a>
Auto Trait Implementations§
impl<'a> Freeze for BasicProperties<'a>
impl<'a> RefUnwindSafe for BasicProperties<'a>
impl<'a> Send for BasicProperties<'a>
impl<'a> Sync for BasicProperties<'a>
impl<'a> Unpin for BasicProperties<'a>
impl<'a> UnwindSafe for BasicProperties<'a>
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