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