pub struct PeptidesSim {Show 14 fields
pub protein_id: u32,
pub peptide_id: u32,
pub sequence: PeptideSequence,
pub proteins: String,
pub decoy: bool,
pub missed_cleavages: i8,
pub n_term: Option<bool>,
pub c_term: Option<bool>,
pub mono_isotopic_mass: f32,
pub retention_time: f32,
pub events: f32,
pub frame_start: u32,
pub frame_end: u32,
pub frame_distribution: SignalDistribution,
}Fields§
§protein_id: u32§peptide_id: u32§sequence: PeptideSequence§proteins: String§decoy: bool§missed_cleavages: i8§n_term: Option<bool>§c_term: Option<bool>§mono_isotopic_mass: f32§retention_time: f32§events: f32§frame_start: u32§frame_end: u32§frame_distribution: SignalDistributionImplementations§
Source§impl PeptidesSim
impl PeptidesSim
pub fn new( protein_id: u32, peptide_id: u32, sequence: String, proteins: String, decoy: bool, missed_cleavages: i8, n_term: Option<bool>, c_term: Option<bool>, mono_isotopic_mass: f32, retention_time: f32, events: f32, frame_start: u32, frame_end: u32, frame_occurrence: Vec<u32>, frame_abundance: Vec<f32>, ) -> Self
Trait Implementations§
Source§impl Clone for PeptidesSim
impl Clone for PeptidesSim
Source§fn clone(&self) -> PeptidesSim
fn clone(&self) -> PeptidesSim
Returns a duplicate of the value. Read more
1.0.0 · 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 PeptidesSim
impl RefUnwindSafe for PeptidesSim
impl Send for PeptidesSim
impl Sync for PeptidesSim
impl Unpin for PeptidesSim
impl UnwindSafe for PeptidesSim
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.