#[non_exhaustive]pub struct LineDropCoefficients {
pub active: Vec<Vec<f64>>,
pub reactive: Vec<Vec<f64>>,
}Expand description
Real coefficient blocks in w_child = w_parent - M p - N q.
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.active: Vec<Vec<f64>>M = 2 Re(conj(Z) .* Gamma).
reactive: Vec<Vec<f64>>N = -2 Im(conj(Z) .* Gamma).
Trait Implementations§
Source§impl Clone for LineDropCoefficients
impl Clone for LineDropCoefficients
Source§fn clone(&self) -> LineDropCoefficients
fn clone(&self) -> LineDropCoefficients
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 LineDropCoefficients
impl Debug for LineDropCoefficients
Source§impl PartialEq for LineDropCoefficients
impl PartialEq for LineDropCoefficients
Source§fn eq(&self, other: &LineDropCoefficients) -> bool
fn eq(&self, other: &LineDropCoefficients) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LineDropCoefficients
Auto Trait Implementations§
impl Freeze for LineDropCoefficients
impl RefUnwindSafe for LineDropCoefficients
impl Send for LineDropCoefficients
impl Sync for LineDropCoefficients
impl Unpin for LineDropCoefficients
impl UnsafeUnpin for LineDropCoefficients
impl UnwindSafe for LineDropCoefficients
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