pub struct CompuMethodRationalContent {
pub direction: CompuScaleDirection,
pub denominator: Vec<f64>,
pub numerator: Vec<f64>,
pub lower_limit: f64,
pub upper_limit: f64,
}
Expand description
Parameters of a rational function conversion
Fields§
§direction: CompuScaleDirection
direction of the conversion
denominator: Vec<f64>
list of numerator coefficients
numerator: Vec<f64>
list of denominator coefficients
lower_limit: f64
lower limit of the scale
upper_limit: f64
upper limit of the scale
Trait Implementations§
Source§impl Clone for CompuMethodRationalContent
impl Clone for CompuMethodRationalContent
Source§fn clone(&self) -> CompuMethodRationalContent
fn clone(&self) -> CompuMethodRationalContent
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 CompuMethodRationalContent
impl Debug for CompuMethodRationalContent
impl StructuralPartialEq for CompuMethodRationalContent
Auto Trait Implementations§
impl Freeze for CompuMethodRationalContent
impl RefUnwindSafe for CompuMethodRationalContent
impl Send for CompuMethodRationalContent
impl Sync for CompuMethodRationalContent
impl Unpin for CompuMethodRationalContent
impl UnwindSafe for CompuMethodRationalContent
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