pub struct Bishop88Gradients {
pub di_dvd: f64,
pub dv_dvd: f64,
pub di_dv: f64,
pub dp_dv: f64,
pub d2p_dvd: f64,
}Expand description
Gradients from the Bishop88 model.
Fields§
§di_dvd: f64dI/dVd
dv_dvd: f64dV/dVd
di_dv: f64dI/dV
dp_dv: f64dP/dV
d2p_dvd: f64d2P/(dV dVd)
Trait Implementations§
Source§impl Clone for Bishop88Gradients
impl Clone for Bishop88Gradients
Source§fn clone(&self) -> Bishop88Gradients
fn clone(&self) -> Bishop88Gradients
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 Bishop88Gradients
impl Debug for Bishop88Gradients
Source§impl PartialEq for Bishop88Gradients
impl PartialEq for Bishop88Gradients
impl Copy for Bishop88Gradients
impl StructuralPartialEq for Bishop88Gradients
Auto Trait Implementations§
impl Freeze for Bishop88Gradients
impl RefUnwindSafe for Bishop88Gradients
impl Send for Bishop88Gradients
impl Sync for Bishop88Gradients
impl Unpin for Bishop88Gradients
impl UnsafeUnpin for Bishop88Gradients
impl UnwindSafe for Bishop88Gradients
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more