pub struct EquivalentNetworkData {
pub mrid: String,
pub name: String,
pub description: Option<String>,
pub region_mrid: Option<String>,
}Expand description
External network equivalent — represents a reduced model of a neighbouring control area or external system.
Fields§
§mrid: StringCIM mRID.
name: StringName of the equivalent network.
description: Option<String>Description.
region_mrid: Option<String>mRID of the SubGeographicalRegion / GeographicalRegion this
equivalent represents.
Trait Implementations§
Source§impl Clone for EquivalentNetworkData
impl Clone for EquivalentNetworkData
Source§fn clone(&self) -> EquivalentNetworkData
fn clone(&self) -> EquivalentNetworkData
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 EquivalentNetworkData
impl Debug for EquivalentNetworkData
Source§impl<'de> Deserialize<'de> for EquivalentNetworkData
impl<'de> Deserialize<'de> for EquivalentNetworkData
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 EquivalentNetworkData
impl RefUnwindSafe for EquivalentNetworkData
impl Send for EquivalentNetworkData
impl Sync for EquivalentNetworkData
impl Unpin for EquivalentNetworkData
impl UnsafeUnpin for EquivalentNetworkData
impl UnwindSafe for EquivalentNetworkData
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