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

Return const pointer

Return mutable pointer

Implementors