#[repr(C)]pub struct ImGuiSelectionExternalStorage {
pub UserData: *mut c_void,
pub AdapterSetItemSelected: Option<unsafe extern "C" fn(self_: *mut ImGuiSelectionExternalStorage, idx: c_int, selected: bool)>,
}Fields§
§UserData: *mut c_void§AdapterSetItemSelected: Option<unsafe extern "C" fn(self_: *mut ImGuiSelectionExternalStorage, idx: c_int, selected: bool)>Implementations§
Source§impl ImGuiSelectionExternalStorage
impl ImGuiSelectionExternalStorage
pub unsafe fn ApplyRequests(&mut self, ms_io: *mut ImGuiMultiSelectIO)
pub unsafe fn new() -> Self
Trait Implementations§
Source§impl Clone for ImGuiSelectionExternalStorage
impl Clone for ImGuiSelectionExternalStorage
Source§fn clone(&self) -> ImGuiSelectionExternalStorage
fn clone(&self) -> ImGuiSelectionExternalStorage
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 Hash for ImGuiSelectionExternalStorage
impl Hash for ImGuiSelectionExternalStorage
Source§impl PartialEq for ImGuiSelectionExternalStorage
impl PartialEq for ImGuiSelectionExternalStorage
Source§fn eq(&self, other: &ImGuiSelectionExternalStorage) -> bool
fn eq(&self, other: &ImGuiSelectionExternalStorage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ImGuiSelectionExternalStorage
impl Eq for ImGuiSelectionExternalStorage
impl StructuralPartialEq for ImGuiSelectionExternalStorage
Auto Trait Implementations§
impl Freeze for ImGuiSelectionExternalStorage
impl RefUnwindSafe for ImGuiSelectionExternalStorage
impl !Send for ImGuiSelectionExternalStorage
impl !Sync for ImGuiSelectionExternalStorage
impl Unpin for ImGuiSelectionExternalStorage
impl UnwindSafe for ImGuiSelectionExternalStorage
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