pub struct MaterialThermalModel {
pub reference_temperature_k: f64,
pub modulus_temp_coeff_per_k: f64,
pub conductivity_w_per_mk: f64,
pub specific_heat_j_per_kgk: f64,
pub expansion_coefficient_per_k: f64,
}Fields§
§reference_temperature_k: f64§modulus_temp_coeff_per_k: f64§conductivity_w_per_mk: f64§specific_heat_j_per_kgk: f64§expansion_coefficient_per_k: f64Trait Implementations§
Source§impl Clone for MaterialThermalModel
impl Clone for MaterialThermalModel
Source§fn clone(&self) -> MaterialThermalModel
fn clone(&self) -> MaterialThermalModel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MaterialThermalModel
impl Debug for MaterialThermalModel
Source§impl Default for MaterialThermalModel
impl Default for MaterialThermalModel
Source§impl<'de> Deserialize<'de> for MaterialThermalModel
impl<'de> Deserialize<'de> for MaterialThermalModel
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
Source§impl PartialEq for MaterialThermalModel
impl PartialEq for MaterialThermalModel
Source§fn eq(&self, other: &MaterialThermalModel) -> bool
fn eq(&self, other: &MaterialThermalModel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MaterialThermalModel
impl Serialize for MaterialThermalModel
impl StructuralPartialEq for MaterialThermalModel
Auto Trait Implementations§
impl Freeze for MaterialThermalModel
impl RefUnwindSafe for MaterialThermalModel
impl Send for MaterialThermalModel
impl Sync for MaterialThermalModel
impl Unpin for MaterialThermalModel
impl UnsafeUnpin for MaterialThermalModel
impl UnwindSafe for MaterialThermalModel
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