pub struct ProcessingMethod {
pub order: i8,
pub software_reference: String,
pub params: Vec<Param>,
}Expand description
Describe a data processing method stage tied to a specific piece of Software
See https://peptideatlas.org/tmp/mzML1.1.0.html#processingMethod
Fields§
§order: i8The order of application of this method in the processing pipeline
software_reference: StringThe software used
params: Vec<Param>Controlled vocabulary and user parameters
Trait Implementations§
Source§impl Clone for ProcessingMethod
impl Clone for ProcessingMethod
Source§fn clone(&self) -> ProcessingMethod
fn clone(&self) -> ProcessingMethod
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 moreSource§impl Debug for ProcessingMethod
impl Debug for ProcessingMethod
Source§impl Default for ProcessingMethod
impl Default for ProcessingMethod
Source§fn default() -> ProcessingMethod
fn default() -> ProcessingMethod
Returns the “default value” for a type. Read more
Source§impl ParamDescribed for ProcessingMethod
impl ParamDescribed for ProcessingMethod
Source§fn params_mut(&mut self) -> &mut Vec<Param>
fn params_mut(&mut self) -> &mut Vec<Param>
Obtain an mutable slice over the encapsulated
Param listSource§fn extend_params(&mut self, it: impl IntoIterator<Item = Param>)
fn extend_params(&mut self, it: impl IntoIterator<Item = Param>)
Add all parameters from an iterator of
Param to the entitySource§fn get_param_by_name(&self, name: &str) -> Option<&Param>
fn get_param_by_name(&self, name: &str) -> Option<&Param>
Find the first
Param whose name matches nameSource§impl PartialEq for ProcessingMethod
impl PartialEq for ProcessingMethod
impl Eq for ProcessingMethod
impl StructuralPartialEq for ProcessingMethod
Auto Trait Implementations§
impl Freeze for ProcessingMethod
impl RefUnwindSafe for ProcessingMethod
impl Send for ProcessingMethod
impl Sync for ProcessingMethod
impl Unpin for ProcessingMethod
impl UnwindSafe for ProcessingMethod
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.