pub struct ElectroThermalDomain {
pub enabled: bool,
pub reference_temperature_k: f64,
pub applied_voltage_v: f64,
pub region_conductivity_scales: Vec<ElectroRegionConductivityScale>,
pub time_profile: Vec<ElectroTimeProfilePoint>,
}Fields§
§enabled: bool§reference_temperature_k: f64§applied_voltage_v: f64§region_conductivity_scales: Vec<ElectroRegionConductivityScale>§time_profile: Vec<ElectroTimeProfilePoint>Trait Implementations§
Source§impl Clone for ElectroThermalDomain
impl Clone for ElectroThermalDomain
Source§fn clone(&self) -> ElectroThermalDomain
fn clone(&self) -> ElectroThermalDomain
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 ElectroThermalDomain
impl Debug for ElectroThermalDomain
Source§impl<'de> Deserialize<'de> for ElectroThermalDomain
impl<'de> Deserialize<'de> for ElectroThermalDomain
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 ElectroThermalDomain
impl PartialEq for ElectroThermalDomain
Source§fn eq(&self, other: &ElectroThermalDomain) -> bool
fn eq(&self, other: &ElectroThermalDomain) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ElectroThermalDomain
impl Serialize for ElectroThermalDomain
impl StructuralPartialEq for ElectroThermalDomain
Auto Trait Implementations§
impl Freeze for ElectroThermalDomain
impl RefUnwindSafe for ElectroThermalDomain
impl Send for ElectroThermalDomain
impl Sync for ElectroThermalDomain
impl Unpin for ElectroThermalDomain
impl UnsafeUnpin for ElectroThermalDomain
impl UnwindSafe for ElectroThermalDomain
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