[][src]Struct imgui_sys::ImGuiInputTextCallbackData

#[repr(C)]
pub struct ImGuiInputTextCallbackData { pub event_flag: ImGuiInputTextFlags, pub flags: ImGuiInputTextFlags, pub user_data: *mut c_void, pub event_char: ImWchar, pub event_key: ImGuiKey, pub buf: *mut c_char, pub buf_text_len: c_int, pub buf_size: c_int, pub buf_dirty: bool, pub cursor_pos: c_int, pub selection_start: c_int, pub selection_end: c_int, }

Shared state of input text callback

Fields

event_flag: ImGuiInputTextFlagsflags: ImGuiInputTextFlagsuser_data: *mut c_voidevent_char: ImWcharevent_key: ImGuiKeybuf: *mut c_charbuf_text_len: c_intbuf_size: c_intbuf_dirty: boolcursor_pos: c_intselection_start: c_intselection_end: c_int

Auto Trait Implementations

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.