#[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 moreimpl Copy 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