#[non_exhaustive]pub struct ConnectionPowerMap {
pub matrix: Vec<Vec<Complex64>>,
pub real_part: Vec<Vec<f64>>,
pub imag_part: Vec<Vec<f64>>,
pub reference_winding_voltage: Vec<Complex64>,
}Expand description
Reference-frozen map from physical channel powers to terminal powers.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.matrix: Vec<Vec<Complex64>>Complex terminal-by-channel map.
real_part: Vec<Vec<f64>>§imag_part: Vec<Vec<f64>>§reference_winding_voltage: Vec<Complex64>Reference voltage across each physical channel.
Trait Implementations§
Source§impl Clone for ConnectionPowerMap
impl Clone for ConnectionPowerMap
Source§fn clone(&self) -> ConnectionPowerMap
fn clone(&self) -> ConnectionPowerMap
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 ConnectionPowerMap
impl Debug for ConnectionPowerMap
Source§impl PartialEq for ConnectionPowerMap
impl PartialEq for ConnectionPowerMap
Source§fn eq(&self, other: &ConnectionPowerMap) -> bool
fn eq(&self, other: &ConnectionPowerMap) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConnectionPowerMap
Auto Trait Implementations§
impl Freeze for ConnectionPowerMap
impl RefUnwindSafe for ConnectionPowerMap
impl Send for ConnectionPowerMap
impl Sync for ConnectionPowerMap
impl Unpin for ConnectionPowerMap
impl UnsafeUnpin for ConnectionPowerMap
impl UnwindSafe for ConnectionPowerMap
Blanket Implementations§
impl<T> Allocation for T
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