Enum sep2_common::packages::types::DataQualifierType
source · #[repr(u8)]pub enum DataQualifierType {
NotApplicable = 0,
Average = 2,
Maximum = 8,
Minimum = 9,
Normal = 12,
StandardDeviationOfPopulation = 29,
StandardDeviationOfSample = 30,
}
Variants§
NotApplicable = 0
Average = 2
Maximum = 8
Minimum = 9
Normal = 12
StandardDeviationOfPopulation = 29
StandardDeviationOfSample = 30
Trait Implementations§
source§impl Clone for DataQualifierType
impl Clone for DataQualifierType
source§fn clone(&self) -> DataQualifierType
fn clone(&self) -> DataQualifierType
Returns a copy 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 DataQualifierType
impl Debug for DataQualifierType
source§impl Default for DataQualifierType
impl Default for DataQualifierType
source§fn default() -> DataQualifierType
fn default() -> DataQualifierType
Returns the “default value” for a type. Read more
source§impl Ord for DataQualifierType
impl Ord for DataQualifierType
source§fn cmp(&self, other: &DataQualifierType) -> Ordering
fn cmp(&self, other: &DataQualifierType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<DataQualifierType> for DataQualifierType
impl PartialEq<DataQualifierType> for DataQualifierType
source§fn eq(&self, other: &DataQualifierType) -> bool
fn eq(&self, other: &DataQualifierType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DataQualifierType> for DataQualifierType
impl PartialOrd<DataQualifierType> for DataQualifierType
source§fn partial_cmp(&self, other: &DataQualifierType) -> Option<Ordering>
fn partial_cmp(&self, other: &DataQualifierType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl YaDeserialize for DataQualifierType
impl YaDeserialize for DataQualifierType
source§impl YaSerialize for DataQualifierType
impl YaSerialize for DataQualifierType
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Copy for DataQualifierType
impl Eq for DataQualifierType
impl StructuralEq for DataQualifierType
impl StructuralPartialEq for DataQualifierType
Auto Trait Implementations§
impl RefUnwindSafe for DataQualifierType
impl Send for DataQualifierType
impl Sync for DataQualifierType
impl Unpin for DataQualifierType
impl UnwindSafe for DataQualifierType
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