Struct tskit::bindings::tsk_table_collection_t[][src]

#[repr(C)]pub struct tsk_table_collection_t {
    pub sequence_length: f64,
    pub file_uuid: *mut c_char,
    pub metadata: *mut c_char,
    pub metadata_length: tsk_size_t,
    pub metadata_schema: *mut c_char,
    pub metadata_schema_length: tsk_size_t,
    pub individuals: tsk_individual_table_t,
    pub nodes: tsk_node_table_t,
    pub edges: tsk_edge_table_t,
    pub migrations: tsk_migration_table_t,
    pub sites: tsk_site_table_t,
    pub mutations: tsk_mutation_table_t,
    pub populations: tsk_population_table_t,
    pub provenances: tsk_provenance_table_t,
    pub indexes: tsk_table_collection_t__bindgen_ty_1,
}

@brief A collection of tables defining the data for a tree sequence.

Fields

sequence_length: f64

@brief The sequence length defining the tree sequence’s coordinate space

file_uuid: *mut c_charmetadata: *mut c_char

@brief The tree-sequence metadata

metadata_length: tsk_size_tmetadata_schema: *mut c_char

@brief The metadata schema

metadata_schema_length: tsk_size_tindividuals: tsk_individual_table_t

@brief The individual table

nodes: tsk_node_table_t

@brief The node table

edges: tsk_edge_table_t

@brief The edge table

migrations: tsk_migration_table_t

@brief The migration table

sites: tsk_site_table_t

@brief The site table

mutations: tsk_mutation_table_t

@brief The mutation table

populations: tsk_population_table_t

@brief The population table

provenances: tsk_provenance_table_t

@brief The provenance table

indexes: tsk_table_collection_t__bindgen_ty_1

Trait Implementations

impl Clone for tsk_table_collection_t[src]

impl Copy for tsk_table_collection_t[src]

impl Debug for tsk_table_collection_t[src]

impl TskitType<tsk_table_collection_t> for TableCollection[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.