Struct tskit::bindings::tsk_ibd_finder_t[][src]

#[repr(C)]pub struct tsk_ibd_finder_t {
    pub pairs: *mut tsk_id_t,
    pub num_pairs: size_t,
    pub num_nodes: size_t,
    pub num_unique_nodes_in_pair: size_t,
    pub pair_map: *mut i64,
    pub sequence_length: f64,
    pub tables: *mut tsk_table_collection_t,
    pub ibd_segments_head: *mut *mut tsk_segment_t,
    pub ibd_segments_tail: *mut *mut tsk_segment_t,
    pub segment_heap: tsk_blkalloc_t,
    pub is_sample: *mut bool,
    pub paired_nodes_index: *mut tsk_id_t,
    pub min_length: f64,
    pub max_time: f64,
    pub ancestor_map_head: *mut *mut tsk_segment_t,
    pub ancestor_map_tail: *mut *mut tsk_segment_t,
    pub segment_queue: *mut tsk_segment_t,
    pub segment_queue_size: size_t,
    pub max_segment_queue_size: size_t,
}

Fields

pairs: *mut tsk_id_tnum_pairs: size_tnum_nodes: size_tnum_unique_nodes_in_pair: size_tpair_map: *mut i64sequence_length: f64tables: *mut tsk_table_collection_tibd_segments_head: *mut *mut tsk_segment_tibd_segments_tail: *mut *mut tsk_segment_tsegment_heap: tsk_blkalloc_tis_sample: *mut boolpaired_nodes_index: *mut tsk_id_tmin_length: f64max_time: f64ancestor_map_head: *mut *mut tsk_segment_tancestor_map_tail: *mut *mut tsk_segment_tsegment_queue: *mut tsk_segment_tsegment_queue_size: size_tmax_segment_queue_size: size_t

Trait Implementations

impl Clone for tsk_ibd_finder_t[src]

impl Copy for tsk_ibd_finder_t[src]

impl Debug for tsk_ibd_finder_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.