#[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§
Source§impl Clone for slow5_hdr_data
impl Clone for slow5_hdr_data
Source§fn clone(&self) -> slow5_hdr_data
fn clone(&self) -> slow5_hdr_data
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 slow5_hdr_data
impl Debug for slow5_hdr_data
impl Copy for slow5_hdr_data
Auto Trait Implementations§
impl Freeze for slow5_hdr_data
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§
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