[][src]Struct hdf5_sys::h5fd::H5FD_file_image_callbacks_t

#[repr(C)]pub struct H5FD_file_image_callbacks_t {
    pub image_malloc: Option<extern "C" fn(size: size_t, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> *mut c_void>,
    pub image_memcpy: Option<extern "C" fn(dest: *mut c_void, src: *const c_void, size: size_t, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> *mut c_void>,
    pub image_realloc: Option<extern "C" fn(ptr: *mut c_void, size: size_t, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> *mut c_void>,
    pub image_free: Option<extern "C" fn(ptr: *mut c_void, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> herr_t>,
    pub udata_copy: Option<extern "C" fn(udata: *mut c_void) -> *mut c_void>,
    pub udata_free: Option<extern "C" fn(udata: *mut c_void) -> herr_t>,
    pub udata: *mut c_void,
}

Fields

image_malloc: Option<extern "C" fn(size: size_t, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> *mut c_void>image_memcpy: Option<extern "C" fn(dest: *mut c_void, src: *const c_void, size: size_t, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> *mut c_void>image_realloc: Option<extern "C" fn(ptr: *mut c_void, size: size_t, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> *mut c_void>image_free: Option<extern "C" fn(ptr: *mut c_void, file_image_op: H5FD_file_image_op_t, udata: *mut c_void) -> herr_t>udata_copy: Option<extern "C" fn(udata: *mut c_void) -> *mut c_void>udata_free: Option<extern "C" fn(udata: *mut c_void) -> herr_t>udata: *mut c_void

Trait Implementations

impl Clone for H5FD_file_image_callbacks_t[src]

impl Copy for H5FD_file_image_callbacks_t[src]

impl Debug for H5FD_file_image_callbacks_t[src]

impl Default for H5FD_file_image_callbacks_t[src]

Auto Trait Implementations

impl RefUnwindSafe for H5FD_file_image_callbacks_t

impl !Send for H5FD_file_image_callbacks_t

impl !Sync for H5FD_file_image_callbacks_t

impl Unpin for H5FD_file_image_callbacks_t

impl UnwindSafe for H5FD_file_image_callbacks_t

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.