pub struct PdnResult {
pub z_target_ohms: f64,
pub c_plane_pf: f64,
pub xc_ohms: Option<f64>,
}Expand description
Result of a PDN impedance calculation.
Fields§
§z_target_ohms: f64Target PDN impedance (Ω).
c_plane_pf: f64Total plane capacitance (pF).
xc_ohms: Option<f64>Capacitive reactance (Ω), None if DC.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PdnResult
impl<'de> Deserialize<'de> for PdnResult
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
impl StructuralPartialEq for PdnResult
Auto Trait Implementations§
impl Freeze for PdnResult
impl RefUnwindSafe for PdnResult
impl Send for PdnResult
impl Sync for PdnResult
impl Unpin for PdnResult
impl UnsafeUnpin for PdnResult
impl UnwindSafe for PdnResult
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