pub struct IntOfLogPoly4 {
pub k: f64,
pub coeffs: [f64; 4],
pub u: f64,
}
Fields§
§k: f64
Constant term
coeffs: [f64; 4]
§u: f64
Trait Implementations§
Source§impl AbsDiffEq for IntOfLogPoly4
impl AbsDiffEq for IntOfLogPoly4
Source§fn default_epsilon() -> Self::Epsilon
fn default_epsilon() -> Self::Epsilon
The default tolerance to use when testing values that are close together. Read more
Source§fn abs_diff_eq(&self, other: &Self, eps: Self::Epsilon) -> bool
fn abs_diff_eq(&self, other: &Self, eps: Self::Epsilon) -> bool
A test for equality that uses the absolute difference to compute the approximate
equality of two numbers.
Source§fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
The inverse of
AbsDiffEq::abs_diff_eq
.Source§impl Add<&IntOfLogPoly4> for &IntOfLogPoly4
impl Add<&IntOfLogPoly4> for &IntOfLogPoly4
Source§type Output = IntOfLogPoly4
type Output = IntOfLogPoly4
The resulting type after applying the
+
operator.Source§impl Add for IntOfLogPoly4
impl Add for IntOfLogPoly4
Source§impl Clone for IntOfLogPoly4
impl Clone for IntOfLogPoly4
Source§fn clone(&self) -> IntOfLogPoly4
fn clone(&self) -> IntOfLogPoly4
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 IntOfLogPoly4
impl Debug for IntOfLogPoly4
Source§impl Default for IntOfLogPoly4
impl Default for IntOfLogPoly4
Source§fn default() -> IntOfLogPoly4
fn default() -> IntOfLogPoly4
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntOfLogPoly4
impl<'de> Deserialize<'de> for IntOfLogPoly4
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 Mul<f64> for IntOfLogPoly4
impl Mul<f64> for IntOfLogPoly4
Source§impl Neg for IntOfLogPoly4
impl Neg for IntOfLogPoly4
Source§impl PartialEq for IntOfLogPoly4
impl PartialEq for IntOfLogPoly4
Source§impl RelativeEq for IntOfLogPoly4
impl RelativeEq for IntOfLogPoly4
Source§fn default_max_relative() -> Self::Epsilon
fn default_max_relative() -> Self::Epsilon
The default relative tolerance for testing values that are far-apart. Read more
Source§fn relative_eq(
&self,
other: &Self,
eps: Self::Epsilon,
max_relative: Self::Epsilon,
) -> bool
fn relative_eq( &self, other: &Self, eps: Self::Epsilon, max_relative: Self::Epsilon, ) -> bool
A test for equality that uses a relative comparison if the values are far apart.
Source§fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon,
) -> bool
fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon, ) -> bool
The inverse of
RelativeEq::relative_eq
.Source§impl Serialize for IntOfLogPoly4
impl Serialize for IntOfLogPoly4
Source§impl Sub<&IntOfLogPoly4> for &IntOfLogPoly4
impl Sub<&IntOfLogPoly4> for &IntOfLogPoly4
Source§type Output = IntOfLogPoly4
type Output = IntOfLogPoly4
The resulting type after applying the
-
operator.Source§impl Sub for IntOfLogPoly4
impl Sub for IntOfLogPoly4
Source§impl Translate for IntOfLogPoly4
impl Translate for IntOfLogPoly4
impl Copy for IntOfLogPoly4
impl StructuralPartialEq for IntOfLogPoly4
Auto Trait Implementations§
impl Freeze for IntOfLogPoly4
impl RefUnwindSafe for IntOfLogPoly4
impl Send for IntOfLogPoly4
impl Sync for IntOfLogPoly4
impl Unpin for IntOfLogPoly4
impl UnwindSafe for IntOfLogPoly4
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