#[repr(C)]pub struct PdfUncertainty {
pub central: f64,
pub errplus: f64,
pub errminus: f64,
pub errsymm: f64,
pub scale: f64,
pub errplus_pdf: f64,
pub errminus_pdf: f64,
pub errsymm_pdf: f64,
pub err_par: f64,
}Expand description
Structure for storage of uncertainty info calculated over a PDF error set.
Fields§
§central: f64The central value.
errplus: f64The unsymmetric error in positive direction.
errminus: f64The unsymmetric error in negative direction.
errsymm: f64The symmetric error.
scale: f64The scale factor needed to convert between the PDF set’s default confidence level and the requested confidence level.
errplus_pdf: f64Extra variable for separate PDF and parameter variation errors with combined sets.
errminus_pdf: f64Extra variable for separate PDF and parameter variation errors with combined sets.
errsymm_pdf: f64Extra variable for separate PDF and parameter variation errors with combined sets.
err_par: f64Extra variable for separate PDF and parameter variation errors with combined sets.
Trait Implementations§
Source§impl ExternType for PdfUncertainty
impl ExternType for PdfUncertainty
Auto Trait Implementations§
impl Freeze for PdfUncertainty
impl RefUnwindSafe for PdfUncertainty
impl Send for PdfUncertainty
impl Sync for PdfUncertainty
impl Unpin for PdfUncertainty
impl UnwindSafe for PdfUncertainty
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