#[repr(C)]pub enum ImGuiDataType {
S32 = 0,
U32 = 1,
S64 = 2,
U64 = 3,
Float = 4,
Double = 5,
COUNT = 6,
}
Variants§
Trait Implementations§
Source§impl Clone for ImGuiDataType
impl Clone for ImGuiDataType
Source§fn clone(&self) -> ImGuiDataType
fn clone(&self) -> ImGuiDataType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ImGuiDataType
impl Debug for ImGuiDataType
Source§impl PartialEq for ImGuiDataType
impl PartialEq for ImGuiDataType
impl Copy for ImGuiDataType
impl Eq for ImGuiDataType
impl StructuralPartialEq for ImGuiDataType
Auto Trait Implementations§
impl Freeze for ImGuiDataType
impl RefUnwindSafe for ImGuiDataType
impl Send for ImGuiDataType
impl Sync for ImGuiDataType
impl Unpin for ImGuiDataType
impl UnwindSafe for ImGuiDataType
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