Skip to main content

MassAnalyzerTerm

Enum MassAnalyzerTerm 

Source
pub enum MassAnalyzerTerm {
Show 13 variants AxialEjectionLinearIonTrap, FourierTransformIonCyclotronResonance, MagneticSector, Quadrupole, QuadrupoleIonTrap, RadialEjectionLinearIonTrap, TimeOfFlight, ElectrostaticEnergyAnalyzer, IonTrap, LinearIonTrap, MassAnalyzerType, Orbitrap, AsymmetricTrackLosslessTimeOfFlightAnalyzer,
}

Variants§

§

AxialEjectionLinearIonTrap

axial ejection linear ion trap - A linear ion trap mass analyzer where ions are ejected along the axis of the analyzer.

§

FourierTransformIonCyclotronResonance

fourier transform ion cyclotron resonance - A device based on the principle of ion cyclotron resonance in which an ion in a magnetic field moves in a circular orbit at a frequency characteristic of its m/z value. Ions are coherently excited to a larger radius orbit using a pulse of radio frequency energy and their image charge is detected on receiver plates as a time domain signal. Fourier transformation of the time domain signal results in a frequency domain signal which is converted to a mass spectrum based in the inverse relationship between frequency and m/z.

§

MagneticSector

magnetic sector - A device that produces a magnetic field perpendicular to a charged particle beam that deflects the beam to an extent that is proportional to the particle momentum per unit charge. For a monoenergetic beam, the deflection is proportional to m/z.

§

Quadrupole

quadrupole - A device that consists of four parallel rods whose centers form the corners of a square and whose opposing poles are connected. The voltage applied to the rods is a superposition of a static potential and a sinusoidal radio frequency potential. The motion of an ion in the x and y dimensions is described by the Matthieu equation whose solutions show that ions in a particular m/z range can be transmitted along the z axis.

§

QuadrupoleIonTrap

quadrupole ion trap - Quadrupole Ion Trap mass analyzer captures the ions in a three dimensional ion trap and then selectively ejects them by varying the RF and DC potentials.

§

RadialEjectionLinearIonTrap

radial ejection linear ion trap - A linear ion trap mass analyzer where ions are ejected along the radius of the analyzer.

§

TimeOfFlight

time-of-flight - Instrument that separates ions by m/z in a field-free region after acceleration to a fixed acceleration energy.

§

ElectrostaticEnergyAnalyzer

electrostatic energy analyzer - A device consisting of conducting parallel plates, concentric cylinders or concentric spheres that separates charged particles according to their kinetic energy by means of an electric field that is constant in time.

§

IonTrap

ion trap - A device for spatially confining ions using electric and magnetic fields alone or in combination.

§

LinearIonTrap

linear ion trap - A two dimensional Paul ion trap in which ions are confined in the axial dimension by means of an electric field at the ends of the trap.

§

MassAnalyzerType

mass analyzer type - Mass analyzer separates the ions according to their mass-to-charge ratio.

§

Orbitrap

orbitrap - An ion trapping device that consists of an outer barrel-like electrode and a coaxial inner spindle-like electrode that form an electrostatic field with quadro-logarithmic potential distribution. The frequency of harmonic oscillations of the orbitally trapped ions along the axis of the electrostatic field is independent of the ion velocity and is inversely proportional to the square root of m/z so that the trap can be used as a mass analyzer.

§

AsymmetricTrackLosslessTimeOfFlightAnalyzer

asymmetric track lossless time-of-flight analyzer - A TOF-like mass analyzer with asymmetric ion mirrors to direct ions into transversal asymmetric oscillations and ion foil shapes and maintains ion packet for transmission and resolution.

Implementations§

Source§

impl MassAnalyzerTerm

These methods are part of the controlled vocabulary mapping

Source

pub const fn accession(&self) -> AccessionIntCode

Retrieve the accession number for this term, independent of its controlled vocabulary

Source

pub const fn controlled_vocabulary(&self) -> ControlledVocabulary

Retrieve the controlled vocabulary this term belongs to

Source

pub const fn name(&self) -> &'static str

Retrieve the plain text human readable name for this term

Source

pub fn from_name(name: &str) -> Option<Self>

Attempt to map a string by name to retrieve one of the terms from this set.

If no match is found, None is returned.

Source

pub const fn from_accession(accession: AccessionIntCode) -> Option<Self>

Attempt to map the numeric accession number to retrieve one of the terms from this set.

If no match is found, None is returned.

Source

pub const fn to_param(self) -> ParamCow<'static>

Convert this term into a ParamCow without a value.

Source

pub const fn from_curie(curie: &CURIE) -> Option<Self>

Convert a CURIE by accession.

If no match is found, None is returned.

Source

pub const fn from_param(p: &ParamCow<'static>) -> Option<Self>

Attempt to convert a ParamCow to a term from this set.

If no match is found, None is returned.

§Note

This method can be called in const contexts, requiring the type be ParamCow with a 'static lifetime parameter, but the regular From trait is implemented for all ParamLike types.

Source

pub fn flags(&self) -> i32

Retrieve a term set specific set of flags

Source

pub fn parents(&self) -> Vec<Self>

Retrieve the list of zero or more terms in the set which are parents of this term.

Trait Implementations§

Source§

impl Clone for MassAnalyzerTerm

Source§

fn clone(&self) -> MassAnalyzerTerm

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for MassAnalyzerTerm

Source§

impl Debug for MassAnalyzerTerm

Source§

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

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

impl Eq for MassAnalyzerTerm

Source§

impl From<&MassAnalyzerTerm> for ParamCow<'static>

Source§

fn from(value: &MassAnalyzerTerm) -> Self

Converts to this type from the input type.
Source§

impl From<&MassAnalyzerTerm> for Param

Source§

fn from(value: &MassAnalyzerTerm) -> Self

Converts to this type from the input type.
Source§

impl From<MassAnalyzerTerm> for ParamCow<'static>

Source§

fn from(value: MassAnalyzerTerm) -> Self

Converts to this type from the input type.
Source§

impl From<MassAnalyzerTerm> for Param

Source§

fn from(value: MassAnalyzerTerm) -> Self

Converts to this type from the input type.
Source§

impl<P> From<P> for MassAnalyzerTerm
where P: ParamLike,

Source§

fn from(value: P) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for MassAnalyzerTerm

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for MassAnalyzerTerm

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> AsOut<T> for T
where T: Copy,

Source§

fn as_out(&mut self) -> Out<'_, T>

Returns an out reference to self.
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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

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

Source§

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

Source§

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.