[][src]Struct CCODE::_NCB

#[repr(C)]pub struct _NCB {
    pub ncb_command: UCHAR,
    pub ncb_retcode: UCHAR,
    pub ncb_lsn: UCHAR,
    pub ncb_num: UCHAR,
    pub ncb_buffer: PUCHAR,
    pub ncb_length: WORD,
    pub ncb_callname: [UCHAR; 16],
    pub ncb_name: [UCHAR; 16],
    pub ncb_rto: UCHAR,
    pub ncb_sto: UCHAR,
    pub ncb_post: Option<unsafe extern "C" fn(arg1: *mut _NCB)>,
    pub ncb_lana_num: UCHAR,
    pub ncb_cmd_cplt: UCHAR,
    pub ncb_reserve: [UCHAR; 18],
    pub ncb_event: HANDLE,
}

Fields

ncb_command: UCHARncb_retcode: UCHARncb_lsn: UCHARncb_num: UCHARncb_buffer: PUCHARncb_length: WORDncb_callname: [UCHAR; 16]ncb_name: [UCHAR; 16]ncb_rto: UCHARncb_sto: UCHARncb_post: Option<unsafe extern "C" fn(arg1: *mut _NCB)>ncb_lana_num: UCHARncb_cmd_cplt: UCHARncb_reserve: [UCHAR; 18]ncb_event: HANDLE

Trait Implementations

impl Clone for _NCB[src]

impl Copy for _NCB[src]

impl Debug for _NCB[src]

Auto Trait Implementations

impl RefUnwindSafe for _NCB

impl !Send for _NCB

impl !Sync for _NCB

impl Unpin for _NCB

impl UnwindSafe for _NCB

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.