pub struct TchWidths {
pub gaussian_fwhm: f64,
pub lorentzian_fwhm: f64,
}Expand description
Gaussian and Lorentzian component FWHMs in one common coordinate unit.
Fields§
§gaussian_fwhm: f64Gaussian full width at half maximum.
lorentzian_fwhm: f64Lorentzian full width at half maximum.
Trait Implementations§
impl Copy for TchWidths
impl StructuralPartialEq for TchWidths
Auto Trait Implementations§
impl Freeze for TchWidths
impl RefUnwindSafe for TchWidths
impl Send for TchWidths
impl Sync for TchWidths
impl Unpin for TchWidths
impl UnsafeUnpin for TchWidths
impl UnwindSafe for TchWidths
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