pub struct ContractedPsiSecondOrder {
pub objective: Array1<f64>,
pub score: Array2<f64>,
pub hessian: Vec<DriftDerivResult>,
pub ld_s: Array1<f64>,
}Fields§
§objective: Array1<f64>§score: Array2<f64>§hessian: Vec<DriftDerivResult>§ld_s: Array1<f64>Auto Trait Implementations§
impl !RefUnwindSafe for ContractedPsiSecondOrder
impl !UnwindSafe for ContractedPsiSecondOrder
impl Freeze for ContractedPsiSecondOrder
impl Send for ContractedPsiSecondOrder
impl Sync for ContractedPsiSecondOrder
impl Unpin for ContractedPsiSecondOrder
impl UnsafeUnpin for ContractedPsiSecondOrder
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
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