#[repr(C)]pub struct ImGuiTypingSelectState {
pub Request: ImGuiTypingSelectRequest,
pub SearchBuffer: [c_char; 64],
pub FocusScope: ImGuiID,
pub LastRequestFrame: c_int,
pub LastRequestTime: f32,
pub SingleCharModeLock: bool,
}Fields§
§Request: ImGuiTypingSelectRequest§SearchBuffer: [c_char; 64]§FocusScope: ImGuiID§LastRequestFrame: c_int§LastRequestTime: f32§SingleCharModeLock: boolTrait Implementations§
Source§impl Clone for ImGuiTypingSelectState
impl Clone for ImGuiTypingSelectState
Source§fn clone(&self) -> ImGuiTypingSelectState
fn clone(&self) -> ImGuiTypingSelectState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImGuiTypingSelectState
Source§impl Debug for ImGuiTypingSelectState
impl Debug for ImGuiTypingSelectState
Source§impl Default for ImGuiTypingSelectState
impl Default for ImGuiTypingSelectState
Source§impl PartialEq for ImGuiTypingSelectState
impl PartialEq for ImGuiTypingSelectState
Source§fn eq(&self, other: &ImGuiTypingSelectState) -> bool
fn eq(&self, other: &ImGuiTypingSelectState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ImGuiTypingSelectState
Auto Trait Implementations§
impl !Send for ImGuiTypingSelectState
impl !Sync for ImGuiTypingSelectState
impl Freeze for ImGuiTypingSelectState
impl RefUnwindSafe for ImGuiTypingSelectState
impl Unpin for ImGuiTypingSelectState
impl UnsafeUnpin for ImGuiTypingSelectState
impl UnwindSafe for ImGuiTypingSelectState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more