#[repr(C)]
pub struct uiTableModelHandler { pub NumColumns: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel) -> c_int>, pub ColumnType: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel, arg3: c_int) -> uiTableValueType>, pub NumRows: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel) -> c_int>, pub CellValue: Option<unsafe extern "C" fn(mh: *mut uiTableModelHandler, m: *mut uiTableModel, row: c_int, column: c_int) -> *mut uiTableValue>, pub SetCellValue: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel, arg3: c_int, arg4: c_int, arg5: *const uiTableValue)>, }

Fields

NumColumns: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel) -> c_int>ColumnType: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel, arg3: c_int) -> uiTableValueType>NumRows: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel) -> c_int>CellValue: Option<unsafe extern "C" fn(mh: *mut uiTableModelHandler, m: *mut uiTableModel, row: c_int, column: c_int) -> *mut uiTableValue>SetCellValue: Option<unsafe extern "C" fn(arg1: *mut uiTableModelHandler, arg2: *mut uiTableModel, arg3: c_int, arg4: c_int, arg5: *const uiTableValue)>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.