pub enum WindingConnection {
Wye,
WyeGrounded,
Delta,
Zigzag,
Auto,
}Expand description
Transformer winding connection type.
Variants§
Wye
Wye (star) connection, ungrounded neutral.
WyeGrounded
Wye (star) connection, solidly grounded neutral.
Delta
Delta (mesh) connection.
Zigzag
Zigzag (interconnected star) connection.
Auto
Autotransformer connection (shared winding).
Trait Implementations§
Source§impl Clone for WindingConnection
impl Clone for WindingConnection
Source§fn clone(&self) -> WindingConnection
fn clone(&self) -> WindingConnection
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 WindingConnection
impl Debug for WindingConnection
Source§impl<'de> Deserialize<'de> for WindingConnection
impl<'de> Deserialize<'de> for WindingConnection
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
Source§impl PartialEq for WindingConnection
impl PartialEq for WindingConnection
Source§impl Serialize for WindingConnection
impl Serialize for WindingConnection
impl Copy for WindingConnection
impl Eq for WindingConnection
impl StructuralPartialEq for WindingConnection
Auto Trait Implementations§
impl Freeze for WindingConnection
impl RefUnwindSafe for WindingConnection
impl Send for WindingConnection
impl Sync for WindingConnection
impl Unpin for WindingConnection
impl UnsafeUnpin for WindingConnection
impl UnwindSafe for WindingConnection
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