#[repr(C)]pub struct uiTableSelection {
pub NumRows: c_int,
pub Rows: *mut c_int,
}
Fields§
§NumRows: c_int
!< Number of selected rows.
Rows: *mut c_int
!< Array containing selected row indices, NULL on empty selection.
Trait Implementations§
Source§impl Clone for uiTableSelection
impl Clone for uiTableSelection
Source§fn clone(&self) -> uiTableSelection
fn clone(&self) -> uiTableSelection
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 uiTableSelection
impl Debug for uiTableSelection
impl Copy for uiTableSelection
Auto Trait Implementations§
impl Freeze for uiTableSelection
impl RefUnwindSafe for uiTableSelection
impl !Send for uiTableSelection
impl !Sync for uiTableSelection
impl Unpin for uiTableSelection
impl UnwindSafe for uiTableSelection
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