pub struct ThermalResult {
pub t_junction_c: f64,
pub t_junction_f: f64,
}Expand description
Result of a thermal management calculation.
Fields§
§t_junction_c: f64Junction temperature (°C).
t_junction_f: f64Junction temperature (°F).
Trait Implementations§
Source§impl Clone for ThermalResult
impl Clone for ThermalResult
Source§fn clone(&self) -> ThermalResult
fn clone(&self) -> ThermalResult
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 ThermalResult
impl Debug for ThermalResult
Source§impl<'de> Deserialize<'de> for ThermalResult
impl<'de> Deserialize<'de> for ThermalResult
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 ThermalResult
impl PartialEq for ThermalResult
Source§impl Serialize for ThermalResult
impl Serialize for ThermalResult
impl StructuralPartialEq for ThermalResult
Auto Trait Implementations§
impl Freeze for ThermalResult
impl RefUnwindSafe for ThermalResult
impl Send for ThermalResult
impl Sync for ThermalResult
impl Unpin for ThermalResult
impl UnsafeUnpin for ThermalResult
impl UnwindSafe for ThermalResult
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