pub struct MutualCoupling {
pub line1_id: String,
pub line2_id: String,
pub r: f64,
pub x: f64,
}Expand description
Mutual coupling between two line segments from CGMES MutualCoupling.
Fields§
§line1_id: StringmRID of the first coupled line segment terminal.
line2_id: StringmRID of the second coupled line segment terminal.
r: f64Mutual zero-sequence resistance (pu, system base).
x: f64Mutual zero-sequence reactance (pu, system base).
Trait Implementations§
Source§impl Clone for MutualCoupling
impl Clone for MutualCoupling
Source§fn clone(&self) -> MutualCoupling
fn clone(&self) -> MutualCoupling
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 MutualCoupling
impl Debug for MutualCoupling
Source§impl<'de> Deserialize<'de> for MutualCoupling
impl<'de> Deserialize<'de> for MutualCoupling
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 MutualCoupling
impl RefUnwindSafe for MutualCoupling
impl Send for MutualCoupling
impl Sync for MutualCoupling
impl Unpin for MutualCoupling
impl UnsafeUnpin for MutualCoupling
impl UnwindSafe for MutualCoupling
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