pub struct FrameInfo { /* private fields */ }Implementations§
Source§impl FrameInfo
impl FrameInfo
pub fn new( quadrupole_settings: Arc<QuadrupoleSettings>, index: usize, rt_in_seconds: f64, intensity_correction_factor: f64, acquisition_type: AcquisitionType, ms_level: MSLevel, window_group: u8, cycle_index: Option<usize>, ) -> Self
pub fn quadrupole_settings(&self) -> &Arc<QuadrupoleSettings>
pub fn index(&self) -> usize
pub fn cycle_index(&self) -> Option<usize>
pub fn rt_in_seconds(&self) -> f64
pub fn intensity_correction_factor(&self) -> f64
pub fn acquisition_type(&self) -> AcquisitionType
pub fn ms_level(&self) -> MSLevel
pub fn window_group(&self) -> u8
pub fn add_ions(self, ions: FrameIons) -> Frame
Trait Implementations§
impl StructuralPartialEq for FrameInfo
Auto Trait Implementations§
impl Freeze for FrameInfo
impl RefUnwindSafe for FrameInfo
impl Send for FrameInfo
impl Sync for FrameInfo
impl Unpin for FrameInfo
impl UnsafeUnpin for FrameInfo
impl UnwindSafe for FrameInfo
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