[][src]Struct nuki_sys::nk_list_view

#[repr(C)]pub struct nk_list_view {
    pub begin: c_int,
    pub end: c_int,
    pub count: c_int,
    pub total_height: c_int,
    pub ctx: *mut nk_context,
    pub scroll_pointer: *mut nk_uint,
    pub scroll_value: nk_uint,
}

Fields

begin: c_intend: c_intcount: c_inttotal_height: c_intctx: *mut nk_contextscroll_pointer: *mut nk_uintscroll_value: nk_uint

Trait Implementations

impl Clone for nk_list_view[src]

impl Copy for nk_list_view[src]

impl Debug for nk_list_view[src]

impl Default for nk_list_view[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.