Trait tskit::TskitTypeAccess[][src]

pub trait TskitTypeAccess<T> {
    fn as_ptr(&self) -> *const T;
fn as_mut_ptr(&mut self) -> *mut T; }
Expand description

Provide pointer access to underlying C types

Required methods

fn as_ptr(&self) -> *const T[src]

Return const pointer

fn as_mut_ptr(&mut self) -> *mut T[src]

Return mutable pointer

Implementors