Struct slow5lib_sys::slow5_hdr_data
source · [−]#[repr(C)]pub struct slow5_hdr_data {
pub num_attrs: u32,
pub attrs: *mut kh_slow5_s_t,
pub maps: slow5_hdr_data__bindgen_ty_1,
}Expand description
@struct slow5_hdr_data SLOW5 header data (constant attributes in FAST5 files)
Fields
num_attrs: u32< Number of data attributes
attrs: *mut kh_slow5_s_t< Set of the data attribute keys for internal access(incase of multiple read groups, the union of keys from all read groups)
maps: slow5_hdr_data__bindgen_ty_1< Dynamic vector of hash maps (attribute key string -> attribute value string). Length of the vector is requal to num_read_groups. Index in the vector corresponds to the read group number. The keys that are not relevant to a particular read group are not stored in this hash map.
Trait Implementations
sourceimpl Clone for slow5_hdr_data
impl Clone for slow5_hdr_data
sourcefn clone(&self) -> slow5_hdr_data
fn clone(&self) -> slow5_hdr_data
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for slow5_hdr_data
impl Debug for slow5_hdr_data
impl Copy for slow5_hdr_data
Auto Trait Implementations
impl RefUnwindSafe for slow5_hdr_data
impl !Send for slow5_hdr_data
impl !Sync for slow5_hdr_data
impl Unpin for slow5_hdr_data
impl UnwindSafe for slow5_hdr_data
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)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more