pub struct QacInputs3 {
pub prior_a_t: Matrix3,
pub reference_r_t: Matrix3,
pub left_l_t: PositiveDiagonal3,
pub right_c_t: PositiveDiagonal3,
pub alpha_t: f64,
pub epsilon_floor: f64,
}Expand description
Inputs for the story #149 3x3 QAC reference step.
Fields§
§prior_a_t: Matrix3§reference_r_t: Matrix3§left_l_t: PositiveDiagonal3§right_c_t: PositiveDiagonal3§alpha_t: f64§epsilon_floor: f64Trait Implementations§
Source§impl Clone for QacInputs3
impl Clone for QacInputs3
Source§fn clone(&self) -> QacInputs3
fn clone(&self) -> QacInputs3
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 QacInputs3
Source§impl Debug for QacInputs3
impl Debug for QacInputs3
Source§impl PartialEq for QacInputs3
impl PartialEq for QacInputs3
Source§fn eq(&self, other: &QacInputs3) -> bool
fn eq(&self, other: &QacInputs3) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QacInputs3
Auto Trait Implementations§
impl Freeze for QacInputs3
impl RefUnwindSafe for QacInputs3
impl Send for QacInputs3
impl Sync for QacInputs3
impl Unpin for QacInputs3
impl UnsafeUnpin for QacInputs3
impl UnwindSafe for QacInputs3
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