[][src]Struct ncursesw::shims::bindings::formnode

#[repr(C)]
pub struct formnode {
    pub status: c_ushort,
    pub rows: c_short,
    pub cols: c_short,
    pub currow: c_int,
    pub curcol: c_int,
    pub toprow: c_int,
    pub begincol: c_int,
    pub maxfield: c_short,
    pub maxpage: c_short,
    pub curpage: c_short,
    pub opts: Form_Options,
    pub win: *mut WINDOW,
    pub sub: *mut WINDOW,
    pub w: *mut WINDOW,
    pub field: *mut *mut FIELD,
    pub current: *mut FIELD,
    pub page: *mut _PAGE,
    pub usrptr: *mut c_void,
    pub forminit: Option<unsafe extern "C" fn(arg1: *mut formnode)>,
    pub formterm: Option<unsafe extern "C" fn(arg1: *mut formnode)>,
    pub fieldinit: Option<unsafe extern "C" fn(arg1: *mut formnode)>,
    pub fieldterm: Option<unsafe extern "C" fn(arg1: *mut formnode)>,
}

Fields

status: c_ushortrows: c_shortcols: c_shortcurrow: c_intcurcol: c_inttoprow: c_intbegincol: c_intmaxfield: c_shortmaxpage: c_shortcurpage: c_shortopts: Form_Optionswin: *mut WINDOWsub: *mut WINDOWw: *mut WINDOWfield: *mut *mut FIELDcurrent: *mut FIELDpage: *mut _PAGEusrptr: *mut c_voidforminit: Option<unsafe extern "C" fn(arg1: *mut formnode)>formterm: Option<unsafe extern "C" fn(arg1: *mut formnode)>fieldinit: Option<unsafe extern "C" fn(arg1: *mut formnode)>fieldterm: Option<unsafe extern "C" fn(arg1: *mut formnode)>

Trait Implementations

impl Clone for formnode[src]

impl Copy for formnode[src]

impl Debug for formnode[src]

Auto Trait Implementations

impl RefUnwindSafe for formnode

impl !Send for formnode

impl !Sync for formnode

impl Unpin for formnode

impl UnwindSafe for formnode

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.