[][src]Struct imgui_sys::ImDrawList

#[repr(C)]
pub struct ImDrawList { pub cmd_buffer: ImVector<ImDrawCmd>, pub idx_buffer: ImVector<ImDrawIdx>, pub vtx_buffer: ImVector<ImDrawVert>, pub flags: ImDrawListFlags, // some fields omitted }

A single draw command list (generally one per window)

Fields

cmd_buffer: ImVector<ImDrawCmd>idx_buffer: ImVector<ImDrawIdx>vtx_buffer: ImVector<ImDrawVert>flags: ImDrawListFlags

Auto Trait Implementations

impl !Send for ImDrawList

impl !Sync for ImDrawList

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.