Struct slow5lib_sys::slow5_rec
source · [−]#[repr(C)]pub struct slow5_rec {
pub read_id_len: slow5_rid_len_t,
pub read_id: *mut c_char,
pub read_group: u32,
pub digitisation: f64,
pub offset: f64,
pub range: f64,
pub sampling_rate: f64,
pub len_raw_signal: u64,
pub raw_signal: *mut i16,
pub aux_map: *mut slow5_aux_data_t,
}Expand description
@struct slow5_rec SLOW5 record data struct (represents a single SLOW5 record)
Fields
read_id_len: slow5_rid_len_t< length of the read ID string (does not include null character)
read_id: *mut c_charread_group: u32digitisation: f64offset: f64range: f64sampling_rate: f64len_raw_signal: u64raw_signal: *mut i16aux_map: *mut slow5_aux_data_t< Auxiliary field name string -> auxiliary field data value. Not to be directly accessed, use provided functions instead.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for slow5_rec
impl !Send for slow5_rec
impl !Sync for slow5_rec
impl Unpin for slow5_rec
impl UnwindSafe for slow5_rec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more