Enum mseed::MSSampleType
source · #[repr(u8)]pub enum MSSampleType {
Unknown = 0,
Text = 116,
Integer32 = 105,
Float32 = 102,
Float64 = 100,
}Expand description
An enumeration of possible sample types.
Variants§
Unknown = 0
Unknown data sample type.
Text = 116
Text data samples (UTF-8).
Integer32 = 105
32-bit integer data samples.
Float32 = 102
32-bit float (IEEE) data samples.
Float64 = 100
64-bit float (IEEE) data samples.
Implementations§
Trait Implementations§
source§impl Clone for MSSampleType
impl Clone for MSSampleType
source§fn clone(&self) -> MSSampleType
fn clone(&self) -> MSSampleType
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 MSSampleType
impl Debug for MSSampleType
source§impl PartialEq for MSSampleType
impl PartialEq for MSSampleType
source§fn eq(&self, other: &MSSampleType) -> bool
fn eq(&self, other: &MSSampleType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for MSSampleType
impl Eq for MSSampleType
impl StructuralEq for MSSampleType
impl StructuralPartialEq for MSSampleType
Auto Trait Implementations§
impl RefUnwindSafe for MSSampleType
impl Send for MSSampleType
impl Sync for MSSampleType
impl Unpin for MSSampleType
impl UnwindSafe for MSSampleType
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