pub enum BinaryDataArrayType {
Unknown,
Float64,
Float32,
Int64,
Int32,
ASCII,
}
Expand description
The canonical primitive data types found in MS data file formats supported by the PSI-MS controlled vocabulary
Variants§
Implementations§
Source§impl BinaryDataArrayType
impl BinaryDataArrayType
Sourcepub const fn as_param_const(&self) -> Option<ParamCow<'static>>
pub const fn as_param_const(&self) -> Option<ParamCow<'static>>
Convert the data type to a ParamCow
if possible.
Trait Implementations§
Source§impl Clone for BinaryDataArrayType
impl Clone for BinaryDataArrayType
Source§fn clone(&self) -> BinaryDataArrayType
fn clone(&self) -> BinaryDataArrayType
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 BinaryDataArrayType
impl Debug for BinaryDataArrayType
Source§impl Default for BinaryDataArrayType
impl Default for BinaryDataArrayType
Source§fn default() -> BinaryDataArrayType
fn default() -> BinaryDataArrayType
Returns the “default value” for a type. Read more
Source§impl Display for BinaryDataArrayType
impl Display for BinaryDataArrayType
Source§impl Hash for BinaryDataArrayType
impl Hash for BinaryDataArrayType
Source§impl PartialEq for BinaryDataArrayType
impl PartialEq for BinaryDataArrayType
impl Copy for BinaryDataArrayType
impl Eq for BinaryDataArrayType
impl StructuralPartialEq for BinaryDataArrayType
Auto Trait Implementations§
impl Freeze for BinaryDataArrayType
impl RefUnwindSafe for BinaryDataArrayType
impl Send for BinaryDataArrayType
impl Sync for BinaryDataArrayType
impl Unpin for BinaryDataArrayType
impl UnwindSafe for BinaryDataArrayType
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.