Struct rsfbclient_core::ibase::isc_blob_ctl[][src]

#[repr(C)]pub struct isc_blob_ctl {
    pub ctl_source: Option<unsafe extern "C" fn() -> ISC_STATUS>,
    pub ctl_source_handle: *mut isc_blob_ctl,
    pub ctl_to_sub_type: c_short,
    pub ctl_from_sub_type: c_short,
    pub ctl_buffer_length: c_ushort,
    pub ctl_segment_length: c_ushort,
    pub ctl_bpb_length: c_ushort,
    pub ctl_bpb: *mut ISC_SCHAR,
    pub ctl_buffer: *mut ISC_UCHAR,
    pub ctl_max_segment: ISC_LONG,
    pub ctl_number_segments: ISC_LONG,
    pub ctl_total_length: ISC_LONG,
    pub ctl_status: *mut ISC_STATUS,
    pub ctl_data: [c_long; 8],
}

Fields

ctl_source: Option<unsafe extern "C" fn() -> ISC_STATUS>ctl_source_handle: *mut isc_blob_ctlctl_to_sub_type: c_shortctl_from_sub_type: c_shortctl_buffer_length: c_ushortctl_segment_length: c_ushortctl_bpb_length: c_ushortctl_bpb: *mut ISC_SCHARctl_buffer: *mut ISC_UCHARctl_max_segment: ISC_LONGctl_number_segments: ISC_LONGctl_total_length: ISC_LONGctl_status: *mut ISC_STATUSctl_data: [c_long; 8]

Trait Implementations

impl Clone for isc_blob_ctl[src]

impl Copy for isc_blob_ctl[src]

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