pub struct PhaseImpedanceEntry {
pub row: u8,
pub col: u8,
pub r: f64,
pub x: f64,
pub b: f64,
}Expand description
Per-phase impedance entry from CGMES PhaseImpedanceData.
Fields§
§row: u8Matrix row index (0-based phase index).
col: u8Matrix column index (0-based phase index).
r: f64Series resistance (ohm/m).
x: f64Series reactance (ohm/m).
b: f64Shunt susceptance (S/m).
Trait Implementations§
Source§impl Clone for PhaseImpedanceEntry
impl Clone for PhaseImpedanceEntry
Source§fn clone(&self) -> PhaseImpedanceEntry
fn clone(&self) -> PhaseImpedanceEntry
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 PhaseImpedanceEntry
impl Debug for PhaseImpedanceEntry
Source§impl<'de> Deserialize<'de> for PhaseImpedanceEntry
impl<'de> Deserialize<'de> for PhaseImpedanceEntry
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
Auto Trait Implementations§
impl Freeze for PhaseImpedanceEntry
impl RefUnwindSafe for PhaseImpedanceEntry
impl Send for PhaseImpedanceEntry
impl Sync for PhaseImpedanceEntry
impl Unpin for PhaseImpedanceEntry
impl UnsafeUnpin for PhaseImpedanceEntry
impl UnwindSafe for PhaseImpedanceEntry
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