pub enum EncodingFormat {
Int16,
Int32,
Float32,
Float64,
Steim1,
Steim2,
}Expand description
Encoding format for sample data in a miniSEED v2 record.
Variants§
Int16
16-bit signed integer (code 1).
Int32
32-bit signed integer (code 3).
Float32
32-bit IEEE float (code 4).
Float64
64-bit IEEE double (code 5).
Steim1
Steim-1 compressed integers (code 10).
Steim2
Steim-2 compressed integers (code 11).
Implementations§
Trait Implementations§
Source§impl Clone for EncodingFormat
impl Clone for EncodingFormat
Source§fn clone(&self) -> EncodingFormat
fn clone(&self) -> EncodingFormat
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 EncodingFormat
impl Debug for EncodingFormat
Source§impl Display for EncodingFormat
impl Display for EncodingFormat
Source§impl PartialEq for EncodingFormat
impl PartialEq for EncodingFormat
impl Copy for EncodingFormat
impl Eq for EncodingFormat
impl StructuralPartialEq for EncodingFormat
Auto Trait Implementations§
impl Freeze for EncodingFormat
impl RefUnwindSafe for EncodingFormat
impl Send for EncodingFormat
impl Sync for EncodingFormat
impl Unpin for EncodingFormat
impl UnwindSafe for EncodingFormat
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