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

#[repr(C)]
pub struct _win_st {
    pub _cury: c_short,
    pub _curx: c_short,
    pub _maxy: c_short,
    pub _maxx: c_short,
    pub _begy: c_short,
    pub _begx: c_short,
    pub _flags: c_short,
    pub _attrs: attr_t,
    pub _bkgd: chtype,
    pub _notimeout: bool,
    pub _clear: bool,
    pub _leaveok: bool,
    pub _scroll: bool,
    pub _idlok: bool,
    pub _idcok: bool,
    pub _immed: bool,
    pub _sync: bool,
    pub _use_keypad: bool,
    pub _delay: c_int,
    pub _line: *mut ldat,
    pub _regtop: c_short,
    pub _regbottom: c_short,
    pub _parx: c_int,
    pub _pary: c_int,
    pub _parent: *mut WINDOW,
    pub _pad: _win_st_pdat,
    pub _yoffset: c_short,
    pub _bkgrnd: cchar_t,
    pub _color: c_int,
}

Fields

_cury: c_short_curx: c_short_maxy: c_short_maxx: c_short_begy: c_short_begx: c_short_flags: c_short_attrs: attr_t_bkgd: chtype_notimeout: bool_clear: bool_leaveok: bool_scroll: bool_idlok: bool_idcok: bool_immed: bool_sync: bool_use_keypad: bool_delay: c_int_line: *mut ldat_regtop: c_short_regbottom: c_short_parx: c_int_pary: c_int_parent: *mut WINDOW_pad: _win_st_pdat_yoffset: c_short_bkgrnd: cchar_t_color: c_int

Trait Implementations

impl Clone for _win_st[src]

impl Copy for _win_st[src]

impl Debug for _win_st[src]

Auto Trait Implementations

impl RefUnwindSafe for _win_st

impl !Send for _win_st

impl !Sync for _win_st

impl Unpin for _win_st

impl UnwindSafe for _win_st

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.