Enum noodles_sam::alignment::record_buf::data::field::value::Array
source · pub enum Array {
Int8(Vec<i8>),
UInt8(Vec<u8>),
Int16(Vec<i16>),
UInt16(Vec<u16>),
Int32(Vec<i32>),
UInt32(Vec<u32>),
Float(Vec<f32>),
}
Expand description
An alignment record data field array value buffer.
Variants§
Int8(Vec<i8>)
An 8-bit integer array (B:c
).
UInt8(Vec<u8>)
An 8-bit unsigned integer array (B:C
).
Int16(Vec<i16>)
A 16-bit integer array (B:s
).
UInt16(Vec<u16>)
A 16-bit unsigned integer array (B:S
).
Int32(Vec<i32>)
A 32-bit integer array (B:i
).
UInt32(Vec<u32>)
A 32-bit unsigned integer array (B:I
).
Float(Vec<f32>)
A single-precision floating-point array (B:f
).
Implementations§
Trait Implementations§
source§impl PartialEq for Array
impl PartialEq for Array
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnwindSafe for Array
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