pub struct Peak {
pub position: f64,
pub intensity: f64,
pub fwhm: f64,
pub eta: f64,
}Expand description
Parameters for one symmetric pseudo-Voigt peak.
Fields§
§position: f64Peak center in the same coordinate system as the sampling grid.
intensity: f64Integrated intensity before applying the finite support window.
fwhm: f64Full width at half maximum; must be positive.
eta: f64Lorentzian mixing fraction in the inclusive range [0, 1].
Trait Implementations§
impl Copy for Peak
impl StructuralPartialEq for Peak
Auto Trait Implementations§
impl Freeze for Peak
impl RefUnwindSafe for Peak
impl Send for Peak
impl Sync for Peak
impl Unpin for Peak
impl UnsafeUnpin for Peak
impl UnwindSafe for Peak
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> 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