pub struct ExtinctionCoefficient {
pub reduced: f64,
pub cystine: f64,
pub abs_01_reduced: f64,
pub abs_01_cystine: f64,
}Expand description
Molar extinction coefficient at 280 nm.
Fields§
§reduced: f64Extinction coefficient assuming all cysteines are reduced (M⁻¹ cm⁻¹).
cystine: f64Extinction coefficient assuming all cysteines form cystines (M⁻¹ cm⁻¹).
abs_01_reduced: f64Absorbance at 0.1% (1 mg/mL), reduced cysteines.
abs_01_cystine: f64Absorbance at 0.1% (1 mg/mL), cystine bridges.
Trait Implementations§
Source§impl Clone for ExtinctionCoefficient
impl Clone for ExtinctionCoefficient
Source§fn clone(&self) -> ExtinctionCoefficient
fn clone(&self) -> ExtinctionCoefficient
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 moreAuto Trait Implementations§
impl Freeze for ExtinctionCoefficient
impl RefUnwindSafe for ExtinctionCoefficient
impl Send for ExtinctionCoefficient
impl Sync for ExtinctionCoefficient
impl Unpin for ExtinctionCoefficient
impl UnsafeUnpin for ExtinctionCoefficient
impl UnwindSafe for ExtinctionCoefficient
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