#[repr(C)]pub struct LOG_HANDLE {
pub log: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR),
pub info: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR),
pub warn: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR),
pub error: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR),
pub verbose: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR),
}Expand description
ログ出力ハンドル
Fields§
§log: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR)§info: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR)§warn: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR)§error: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR)§verbose: unsafe extern "C" fn(handle: *mut LOG_HANDLE, message: LPCWSTR)Auto Trait Implementations§
impl Freeze for LOG_HANDLE
impl RefUnwindSafe for LOG_HANDLE
impl Send for LOG_HANDLE
impl Sync for LOG_HANDLE
impl Unpin for LOG_HANDLE
impl UnwindSafe for LOG_HANDLE
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