Struct mzdata::spectrum::DeconvolutedSpectrumType

source ·
pub struct DeconvolutedSpectrumType<D: DeconvolutedCentroidLike + Default> {
    pub description: SpectrumDescription,
    pub deconvoluted_peaks: MassPeakSetType<D>,
}
Expand description

Represents a spectrum that has been centroided, deisotoped, and charge state deconvolved

Fields§

§description: SpectrumDescription

The spectrum metadata describing acquisition conditions and details.

§deconvoluted_peaks: MassPeakSetType<D>

The deisotoped and charge state deconvolved peaks

Implementations§

source§

impl<D: DeconvolutedCentroidLike + Default> DeconvolutedSpectrumType<D>

source

pub fn new( description: SpectrumDescription, deconvoluted_peaks: MassPeakSetType<D> ) -> Self

source

pub fn into_spectrum<C>( self ) -> Result<MultiLayerSpectrum<C, D>, SpectrumConversionError>
where C: CentroidLike + Default,

Convert a spectrum into a MultiLayerSpectrum

Trait Implementations§

source§

impl<D: Clone + DeconvolutedCentroidLike + Default> Clone for DeconvolutedSpectrumType<D>

source§

fn clone(&self) -> DeconvolutedSpectrumType<D>

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<D: Debug + DeconvolutedCentroidLike + Default> Debug for DeconvolutedSpectrumType<D>

source§

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

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

impl<D: Default + DeconvolutedCentroidLike + Default> Default for DeconvolutedSpectrumType<D>

source§

fn default() -> DeconvolutedSpectrumType<D>

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

impl<D: DeconvolutedCentroidLike + Default> ParamDescribed for DeconvolutedSpectrumType<D>

source§

fn params(&self) -> &[Param]

Obtain an immutable slice over the encapsulated Param list
source§

fn params_mut(&mut self) -> &mut ParamList

Obtain an mutable slice over the encapsulated Param list
source§

fn add_param(&mut self, param: Param)

Add a new Param to the entity
source§

fn extend_params(&mut self, it: impl IntoIterator<Item = Param>)

Add all parameters from an iterator of Param to the entity
source§

fn remove_param(&mut self, index: usize) -> Param

Remove the ith Param from the entity.
source§

fn get_param_by_name(&self, name: &str) -> Option<&Param>

Find the first Param whose name matches name
source§

fn get_param_by_curie(&self, curie: &CURIE) -> Option<&Param>

Find the first Param whose CURIE matches curie
source§

fn get_param_by_accession(&self, accession: &str) -> Option<&Param>

Find the first Param whose Param::accession matches accession Read more
source§

fn iter_params(&self) -> Iter<'_, Param>

Iterate over the encapsulated parameter list
source§

fn iter_params_mut(&mut self) -> IterMut<'_, Param>

Iterate mutably over the encapsulated parameter list
source§

impl<D: DeconvolutedCentroidLike + Default> SpectrumLike<CentroidPeak, D> for DeconvolutedSpectrumType<D>

source§

fn description(&self) -> &SpectrumDescription

The method to access the spectrum description itself, which supplies the data for most other methods on this trait.
source§

fn description_mut(&mut self) -> &mut SpectrumDescription

The method to access the spectrum descript itself, mutably.
source§

fn peaks(&self) -> RefPeakDataLevel<'_, CentroidPeak, D>

Retrieve the most processed representation of the mass spectrum’s signal
source§

fn raw_arrays(&self) -> Option<&BinaryArrayMap>

source§

fn into_peaks_and_description( self ) -> (PeakDataLevel<CentroidPeak, D>, SpectrumDescription)

source§

fn acquisition(&self) -> &Acquisition

Access the acquisition information for this spectrum.
source§

fn precursor(&self) -> Option<&Precursor>

Access the precursor information, if it exists.
source§

fn precursor_iter(&self) -> impl Iterator<Item = &Precursor>

Iterate over all precursors of the spectrum
source§

fn precursor_mut(&mut self) -> Option<&mut Precursor>

Mutably access the precursor information, if it exists
source§

fn precursor_iter_mut(&mut self) -> impl Iterator<Item = &mut Precursor>

Iterate over all precursors of the spectrum mutably
source§

fn start_time(&self) -> f64

A shortcut method to retrieve the scan start time of a spectrum
source§

fn ms_level(&self) -> u8

Access the MS exponentiation level
source§

fn id(&self) -> &str

Access the native ID string for the spectrum
source§

fn index(&self) -> usize

Access the index of the spectrum in the source file
source§

fn signal_continuity(&self) -> SignalContinuity

Access a description of how raw the signal is, whether a profile spectrum is available or only centroids are present.
source§

fn polarity(&self) -> ScanPolarity

source§

fn params(&self) -> &ParamList

source§

fn ion_mobility(&self) -> Option<f64>

Access the point measure of ion mobility associated with the scan if present. This is distinct from having a frame-level scan across the ion mobility dimension.
source§

fn has_ion_mobility(&self) -> bool

Check if this spectrum has a point measure of ion mobility. This is distinct from having a frame-level scan across the ion mobility dimension.
source§

fn update_summaries(&mut self)

Compute and update the the total ion current, base peak, and m/z range for the spectrum based upon its current peak data. Read more
source§

impl<C, D> TryFrom<MultiLayerSpectrum<C, D>> for DeconvolutedSpectrumType<D>

§

type Error = SpectrumConversionError

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

fn try_from(value: MultiLayerSpectrum<C, D>) -> Result<Self, Self::Error>

Performs the conversion.

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> 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.