#[repr(C)]pub struct DisplayCallbacks {
pub init_progress_bar: extern "C" fn(),
pub log_message: extern "C" fn(msg_type: c_int, msg: *const c_int),
pub load_bar: extern "C" fn(current: c_int, total: c_int),
}
Fields§
§init_progress_bar: extern "C" fn()
§log_message: extern "C" fn(msg_type: c_int, msg: *const c_int)
§load_bar: extern "C" fn(current: c_int, total: c_int)
Auto Trait Implementations§
impl Freeze for DisplayCallbacks
impl RefUnwindSafe for DisplayCallbacks
impl Send for DisplayCallbacks
impl Sync for DisplayCallbacks
impl Unpin for DisplayCallbacks
impl UnwindSafe for DisplayCallbacks
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