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

#[repr(C)]
pub struct tagMENU {
    pub height: c_short,
    pub width: c_short,
    pub rows: c_short,
    pub cols: c_short,
    pub frows: c_short,
    pub fcols: c_short,
    pub arows: c_short,
    pub namelen: c_short,
    pub desclen: c_short,
    pub marklen: c_short,
    pub itemlen: c_short,
    pub spc_desc: c_short,
    pub spc_cols: c_short,
    pub spc_rows: c_short,
    pub pattern: *mut c_char,
    pub pindex: c_short,
    pub win: *mut WINDOW,
    pub sub: *mut WINDOW,
    pub userwin: *mut WINDOW,
    pub usersub: *mut WINDOW,
    pub items: *mut *mut ITEM,
    pub nitems: c_short,
    pub curitem: *mut ITEM,
    pub toprow: c_short,
    pub fore: chtype,
    pub back: chtype,
    pub grey: chtype,
    pub pad: c_uchar,
    pub menuinit: Menu_Hook,
    pub menuterm: Menu_Hook,
    pub iteminit: Menu_Hook,
    pub itemterm: Menu_Hook,
    pub userptr: *mut c_void,
    pub mark: *mut c_char,
    pub opt: Menu_Options,
    pub status: c_ushort,
}

Fields

height: c_shortwidth: c_shortrows: c_shortcols: c_shortfrows: c_shortfcols: c_shortarows: c_shortnamelen: c_shortdesclen: c_shortmarklen: c_shortitemlen: c_shortspc_desc: c_shortspc_cols: c_shortspc_rows: c_shortpattern: *mut c_charpindex: c_shortwin: *mut WINDOWsub: *mut WINDOWuserwin: *mut WINDOWusersub: *mut WINDOWitems: *mut *mut ITEMnitems: c_shortcuritem: *mut ITEMtoprow: c_shortfore: chtypeback: chtypegrey: chtypepad: c_ucharmenuinit: Menu_Hookmenuterm: Menu_Hookiteminit: Menu_Hookitemterm: Menu_Hookuserptr: *mut c_voidmark: *mut c_charopt: Menu_Optionsstatus: c_ushort

Trait Implementations

impl Clone for tagMENU[src]

impl Copy for tagMENU[src]

impl Debug for tagMENU[src]

Auto Trait Implementations

impl RefUnwindSafe for tagMENU

impl !Send for tagMENU

impl !Sync for tagMENU

impl Unpin for tagMENU

impl UnwindSafe for tagMENU

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.