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

#[repr(C)]
pub struct tagITEM {
    pub name: TEXT,
    pub description: TEXT,
    pub imenu: *mut tagMENU,
    pub userptr: *mut c_void,
    pub opt: Item_Options,
    pub index: c_short,
    pub y: c_short,
    pub x: c_short,
    pub value: bool,
    pub left: *mut tagITEM,
    pub right: *mut tagITEM,
    pub up: *mut tagITEM,
    pub down: *mut tagITEM,
}

Fields

name: TEXTdescription: TEXTimenu: *mut tagMENUuserptr: *mut c_voidopt: Item_Optionsindex: c_shorty: c_shortx: c_shortvalue: boolleft: *mut tagITEMright: *mut tagITEMup: *mut tagITEMdown: *mut tagITEM

Trait Implementations

impl Clone for tagITEM[src]

impl Copy for tagITEM[src]

impl Debug for tagITEM[src]

Auto Trait Implementations

impl RefUnwindSafe for tagITEM

impl !Send for tagITEM

impl !Sync for tagITEM

impl Unpin for tagITEM

impl UnwindSafe for tagITEM

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.