#[repr(C)]pub struct slow5_file_meta {
pub pathname: *const c_char,
pub fd: c_int,
pub start_rec_offset: u64,
pub fread_buffer: *mut c_char,
pub mode: *const c_char,
}Expand description
@struct slow5_file SLOW5 file meta data
Fields§
§pathname: *const c_char< file path
fd: c_int< file descriptor
start_rec_offset: u64< offset (in bytes) of the first SLOW5 record (skipping the SLOW5 header; used for indexing)
fread_buffer: *mut c_char< buffer for fread
mode: *const c_char< file mode
Trait Implementations§
Source§impl Clone for slow5_file_meta
impl Clone for slow5_file_meta
Source§fn clone(&self) -> slow5_file_meta
fn clone(&self) -> slow5_file_meta
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_file_meta
impl Debug for slow5_file_meta
impl Copy for slow5_file_meta
Auto Trait Implementations§
impl Freeze for slow5_file_meta
impl RefUnwindSafe for slow5_file_meta
impl !Send for slow5_file_meta
impl !Sync for slow5_file_meta
impl Unpin for slow5_file_meta
impl UnwindSafe for slow5_file_meta
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