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

#[repr(C)]
pub struct fieldnode {
    pub status: c_ushort,
    pub rows: c_short,
    pub cols: c_short,
    pub frow: c_short,
    pub fcol: c_short,
    pub drows: c_int,
    pub dcols: c_int,
    pub maxgrow: c_int,
    pub nrow: c_int,
    pub nbuf: c_short,
    pub just: c_short,
    pub page: c_short,
    pub index: c_short,
    pub pad: c_int,
    pub fore: chtype,
    pub back: chtype,
    pub opts: Field_Options,
    pub snext: *mut fieldnode,
    pub sprev: *mut fieldnode,
    pub link: *mut fieldnode,
    pub form: *mut formnode,
    pub type_: *mut typenode,
    pub arg: *mut c_void,
    pub buf: *mut FIELD_CELL,
    pub usrptr: *mut c_void,
}

Fields

status: c_ushortrows: c_shortcols: c_shortfrow: c_shortfcol: c_shortdrows: c_intdcols: c_intmaxgrow: c_intnrow: c_intnbuf: c_shortjust: c_shortpage: c_shortindex: c_shortpad: c_intfore: chtypeback: chtypeopts: Field_Optionssnext: *mut fieldnodesprev: *mut fieldnodelink: *mut fieldnodeform: *mut formnodetype_: *mut typenodearg: *mut c_voidbuf: *mut FIELD_CELLusrptr: *mut c_void

Trait Implementations

impl Clone for fieldnode[src]

impl Copy for fieldnode[src]

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