pub struct DecodedScan {
pub function_index: u32,
pub scan_idx: usize,
pub retention_time_min: f32,
pub spectrum: DecodedSpectrum,
}Expand description
One scan after decoding.
Fields§
§function_index: u32§scan_idx: usize0-based position within the function.
retention_time_min: f32§spectrum: DecodedSpectrumTrait Implementations§
Source§impl Clone for DecodedScan
impl Clone for DecodedScan
Source§fn clone(&self) -> DecodedScan
fn clone(&self) -> DecodedScan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecodedScan
impl RefUnwindSafe for DecodedScan
impl Send for DecodedScan
impl Sync for DecodedScan
impl Unpin for DecodedScan
impl UnsafeUnpin for DecodedScan
impl UnwindSafe for DecodedScan
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