#[non_exhaustive]pub struct ScopfFixedRatioRow {
pub j_xf: usize,
pub tau_o: f64,
}Expand description
A transformer with a fixed winding ratio (fwr).
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.j_xf: usize§tau_o: f64Trait Implementations§
Source§impl Clone for ScopfFixedRatioRow
impl Clone for ScopfFixedRatioRow
Source§fn clone(&self) -> ScopfFixedRatioRow
fn clone(&self) -> ScopfFixedRatioRow
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 ScopfFixedRatioRow
impl Debug for ScopfFixedRatioRow
Source§impl<'de> Deserialize<'de> for ScopfFixedRatioRow
impl<'de> Deserialize<'de> for ScopfFixedRatioRow
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 ScopfFixedRatioRow
impl PartialEq for ScopfFixedRatioRow
Source§fn eq(&self, other: &ScopfFixedRatioRow) -> bool
fn eq(&self, other: &ScopfFixedRatioRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScopfFixedRatioRow
impl Serialize for ScopfFixedRatioRow
impl StructuralPartialEq for ScopfFixedRatioRow
Auto Trait Implementations§
impl Freeze for ScopfFixedRatioRow
impl RefUnwindSafe for ScopfFixedRatioRow
impl Send for ScopfFixedRatioRow
impl Sync for ScopfFixedRatioRow
impl Unpin for ScopfFixedRatioRow
impl UnsafeUnpin for ScopfFixedRatioRow
impl UnwindSafe for ScopfFixedRatioRow
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