#[non_exhaustive]pub struct CrossVoltageCoefficients {
pub constant: Complex64,
pub coefficient_phi: Complex64,
pub coefficient_psi: Complex64,
}Expand description
Affine closure c + a w_phi + b w_psi for one cross-voltage product.
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.constant: Complex64§coefficient_phi: Complex64§coefficient_psi: Complex64Trait Implementations§
Source§impl Clone for CrossVoltageCoefficients
impl Clone for CrossVoltageCoefficients
Source§fn clone(&self) -> CrossVoltageCoefficients
fn clone(&self) -> CrossVoltageCoefficients
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 moreimpl Copy for CrossVoltageCoefficients
Source§impl Debug for CrossVoltageCoefficients
impl Debug for CrossVoltageCoefficients
Source§impl PartialEq for CrossVoltageCoefficients
impl PartialEq for CrossVoltageCoefficients
Source§fn eq(&self, other: &CrossVoltageCoefficients) -> bool
fn eq(&self, other: &CrossVoltageCoefficients) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CrossVoltageCoefficients
Auto Trait Implementations§
impl Freeze for CrossVoltageCoefficients
impl RefUnwindSafe for CrossVoltageCoefficients
impl Send for CrossVoltageCoefficients
impl Sync for CrossVoltageCoefficients
impl Unpin for CrossVoltageCoefficients
impl UnsafeUnpin for CrossVoltageCoefficients
impl UnwindSafe for CrossVoltageCoefficients
Blanket Implementations§
impl<T> Allocation for T
impl<T> Boilerplate for T
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