pub trait ErrorCallback: Sized {
    // Required method
    fn report_error(&self, code: PxErrorCode, message: &str, file: &str, line: u32);

    // Provided method
    unsafe fn into_px(self) -> *mut PxErrorCallback { ... }
}

Required Methods§

source

fn report_error(&self, code: PxErrorCode, message: &str, file: &str, line: u32)

Provided Methods§

source

unsafe fn into_px(self) -> *mut PxErrorCallback

Safety

Do not override this method.

Implementors§