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

#[repr(C)]
pub struct typenode {
    pub status: c_ushort,
    pub ref_: c_long,
    pub left: *mut typenode,
    pub right: *mut typenode,
    pub makearg: Option<unsafe extern "C" fn(arg1: *mut va_list) -> *mut c_void>,
    pub copyarg: Option<unsafe extern "C" fn(arg1: *const c_void) -> *mut c_void>,
    pub freearg: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
    pub fieldcheck: typenode__bindgen_ty_1,
    pub charcheck: typenode__bindgen_ty_2,
    pub enum_next: typenode__bindgen_ty_3,
    pub enum_prev: typenode__bindgen_ty_4,
    pub genericarg: Option<unsafe extern "C" fn(arg1: *mut c_void) -> *mut c_void>,
}

Fields

status: c_ushortref_: c_longleft: *mut typenoderight: *mut typenodemakearg: Option<unsafe extern "C" fn(arg1: *mut va_list) -> *mut c_void>copyarg: Option<unsafe extern "C" fn(arg1: *const c_void) -> *mut c_void>freearg: Option<unsafe extern "C" fn(arg1: *mut c_void)>fieldcheck: typenode__bindgen_ty_1charcheck: typenode__bindgen_ty_2enum_next: typenode__bindgen_ty_3enum_prev: typenode__bindgen_ty_4genericarg: Option<unsafe extern "C" fn(arg1: *mut c_void) -> *mut c_void>

Trait Implementations

impl Clone for typenode[src]

impl Copy for typenode[src]

Auto Trait Implementations

impl RefUnwindSafe for typenode

impl !Send for typenode

impl !Sync for typenode

impl Unpin for typenode

impl UnwindSafe for typenode

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.