Struct imgui_sys::ImDrawList[][src]

#[repr(C)]pub struct ImDrawList {
    pub CmdBuffer: ImVector_ImDrawCmd,
    pub IdxBuffer: ImVector_ImDrawIdx,
    pub VtxBuffer: ImVector_ImDrawVert,
    pub Flags: ImDrawListFlags,
    pub _VtxCurrentIdx: c_uint,
    pub _Data: *const ImDrawListSharedData,
    pub _OwnerName: *const c_char,
    pub _VtxWritePtr: *mut ImDrawVert,
    pub _IdxWritePtr: *mut ImDrawIdx,
    pub _ClipRectStack: ImVector_ImVec4,
    pub _TextureIdStack: ImVector_ImTextureID,
    pub _Path: ImVector_ImVec2,
    pub _CmdHeader: ImDrawCmdHeader,
    pub _Splitter: ImDrawListSplitter,
    pub _FringeScale: f32,
}

Fields

CmdBuffer: ImVector_ImDrawCmdIdxBuffer: ImVector_ImDrawIdxVtxBuffer: ImVector_ImDrawVertFlags: ImDrawListFlags_VtxCurrentIdx: c_uint_Data: *const ImDrawListSharedData_OwnerName: *const c_char_VtxWritePtr: *mut ImDrawVert_IdxWritePtr: *mut ImDrawIdx_ClipRectStack: ImVector_ImVec4_TextureIdStack: ImVector_ImTextureID_Path: ImVector_ImVec2_CmdHeader: ImDrawCmdHeader_Splitter: ImDrawListSplitter_FringeScale: f32

Trait Implementations

impl Clone for ImDrawList[src]

impl Copy for ImDrawList[src]

impl Debug for ImDrawList[src]

impl Default for ImDrawList[src]

impl PartialEq<ImDrawList> for ImDrawList[src]

impl StructuralPartialEq for ImDrawList[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, 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.