Struct tskit::bindings::kastore_t[][src]

#[repr(C)]
pub struct kastore_t { pub flags: c_int, pub mode: c_int, pub file_version: [c_int; 2], pub num_items: size_t, pub items: *mut kaitem_t, pub file: *mut FILE, pub file_size: size_t, pub file_offset: c_long, pub read_buffer: *mut c_char, }

@brief A file-backed store of key-array values.

Fields

flags: c_intmode: c_intfile_version: [c_int; 2]num_items: size_titems: *mut kaitem_tfile: *mut FILEfile_size: size_tfile_offset: c_longread_buffer: *mut c_char

Trait Implementations

impl Clone for kastore_t[src]

impl Copy for kastore_t[src]

impl Debug for kastore_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.