Struct rsfbclient_core::ibase::blobcallback[][src]

#[repr(C)]pub struct blobcallback {
    pub blob_get_segment: Option<unsafe extern "C" fn(hnd: *mut c_void, buffer: *mut ISC_UCHAR, buf_size: ISC_USHORT, result_len: *mut ISC_USHORT) -> c_short>,
    pub blob_handle: *mut c_void,
    pub blob_number_segments: ISC_LONG,
    pub blob_max_segment: ISC_LONG,
    pub blob_total_length: ISC_LONG,
    pub blob_put_segment: Option<unsafe extern "C" fn(hnd: *mut c_void, buffer: *const ISC_UCHAR, buf_size: ISC_USHORT)>,
    pub blob_lseek: Option<unsafe extern "C" fn(hnd: *mut c_void, mode: ISC_USHORT, offset: ISC_LONG) -> ISC_LONG>,
}

Fields

blob_get_segment: Option<unsafe extern "C" fn(hnd: *mut c_void, buffer: *mut ISC_UCHAR, buf_size: ISC_USHORT, result_len: *mut ISC_USHORT) -> c_short>blob_handle: *mut c_voidblob_number_segments: ISC_LONGblob_max_segment: ISC_LONGblob_total_length: ISC_LONGblob_put_segment: Option<unsafe extern "C" fn(hnd: *mut c_void, buffer: *const ISC_UCHAR, buf_size: ISC_USHORT)>blob_lseek: Option<unsafe extern "C" fn(hnd: *mut c_void, mode: ISC_USHORT, offset: ISC_LONG) -> ISC_LONG>

Trait Implementations

impl Clone for blobcallback[src]

impl Copy for blobcallback[src]

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