pub struct ProtectionData {
pub current_relays: Vec<CurrentRelaySettings>,
pub distance_relays: Vec<DistanceRelaySettings>,
pub reclose_sequences: Vec<RecloseSequenceData>,
pub synchrocheck_relays: Vec<SynchrocheckSettings>,
}Expand description
Container for all protection equipment data.
Fields§
§current_relays: Vec<CurrentRelaySettings>Overcurrent relays.
distance_relays: Vec<DistanceRelaySettings>Distance/impedance relays.
reclose_sequences: Vec<RecloseSequenceData>Auto-reclose sequences.
synchrocheck_relays: Vec<SynchrocheckSettings>Synchrocheck relays.
Implementations§
Trait Implementations§
Source§impl Clone for ProtectionData
impl Clone for ProtectionData
Source§fn clone(&self) -> ProtectionData
fn clone(&self) -> ProtectionData
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 ProtectionData
impl Debug for ProtectionData
Source§impl Default for ProtectionData
impl Default for ProtectionData
Source§fn default() -> ProtectionData
fn default() -> ProtectionData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProtectionData
impl<'de> Deserialize<'de> for ProtectionData
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 ProtectionData
impl RefUnwindSafe for ProtectionData
impl Send for ProtectionData
impl Sync for ProtectionData
impl Unpin for ProtectionData
impl UnsafeUnpin for ProtectionData
impl UnwindSafe for ProtectionData
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