Struct mzdata::spectrum::Precursor

source ·
pub struct Precursor {
    pub ions: Vec<SelectedIon>,
    pub isolation_window: IsolationWindow,
    pub precursor_id: Option<String>,
    pub product_id: Option<String>,
    pub activation: Activation,
}
Expand description

Describes the precursor ion of the owning spectrum.

Fields§

§ions: Vec<SelectedIon>

Describes the selected ion’s properties

§isolation_window: IsolationWindow

Describes the isolation window around the selected ion

§precursor_id: Option<String>

The precursor scan ID, if given

§product_id: Option<String>

The product scan ID, if given

§activation: Activation

The activation process applied to the precursor ion

Implementations§

source§

impl Precursor

source

pub fn precursor_spectrum<C, D, S, R>(&self, source: &mut R) -> Option<S>

Given a SpectrumSource object, look up the precursor scan in it. This is useful when examining the area around where the precursor ion was or to obtain a snapshot of the retention time when the spectrum was scheduled.

source

pub fn product_spectrum<C, D, S, R>(&self, source: &mut R) -> Option<S>

Given a SpectrumSource object, look up the product scan in it. This is rarely needed unless you have manually separated Precursor objects from their spectra.

Trait Implementations§

source§

impl Clone for Precursor

source§

fn clone(&self) -> Precursor

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Precursor

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Precursor

source§

fn default() -> Precursor

Returns the “default value” for a type. Read more
source§

impl PartialEq for Precursor

source§

fn eq(&self, other: &Precursor) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PrecursorSelection for Precursor

source§

fn ion(&self) -> &SelectedIon

Describes the selected ion’s properties
source§

fn isolation_window(&self) -> &IsolationWindow

Describes the isolation window around the selected ion
source§

fn precursor_id(&self) -> Option<&String>

The precursor scan ID, if given
source§

fn product_id(&self) -> Option<&String>

The product scan ID, if given
source§

fn activation(&self) -> &Activation

The activation process applied to the precursor ion
source§

fn ion_mut(&mut self) -> &mut SelectedIon

source§

fn activation_mut(&mut self) -> &mut Activation

source§

fn isolation_window_mut(&mut self) -> &mut IsolationWindow

source§

fn iter(&self) -> impl Iterator<Item = &SelectedIon>

source§

fn iter_mut(&mut self) -> impl Iterator<Item = &mut SelectedIon>

source§

fn add_ion(&mut self, ion: SelectedIon)

source§

fn last_ion_mut(&mut self) -> &mut SelectedIon

source§

fn last_ion(&self) -> &SelectedIon

source§

impl StructuralPartialEq for Precursor

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IonProperties for T

source§

fn mz(&self) -> f64

The selected ion m/z
source§

fn neutral_mass(&self) -> f64

The selected ion’s estimated neutral mass, given the m/z and charge
source§

fn charge(&self) -> Option<i32>

The expected charge state of the selected ion, if known
source§

fn has_charge(&self) -> bool

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,