Struct ILoggingChannel_Vtbl
#[repr(C)]pub struct ILoggingChannel_Vtbl {
pub base__: IInspectable_Vtbl,
pub Name: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT,
pub Enabled: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT,
pub Level: unsafe extern "system" fn(_: *mut c_void, _: *mut LoggingLevel) -> HRESULT,
pub LogMessage: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
pub LogMessageWithLevel: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: LoggingLevel) -> HRESULT,
pub LogValuePair: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: i32) -> HRESULT,
pub LogValuePairWithLevel: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: i32, _: LoggingLevel) -> HRESULT,
pub LoggingEnabled: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut i64) -> HRESULT,
pub RemoveLoggingEnabled: unsafe extern "system" fn(_: *mut c_void, _: i64) -> HRESULT,
}Fields§
§base__: IInspectable_Vtbl§Name: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§Enabled: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT§Level: unsafe extern "system" fn(_: *mut c_void, _: *mut LoggingLevel) -> HRESULT§LogMessage: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§LogMessageWithLevel: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: LoggingLevel) -> HRESULT§LogValuePair: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: i32) -> HRESULT§LogValuePairWithLevel: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: i32, _: LoggingLevel) -> HRESULT§LoggingEnabled: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut i64) -> HRESULT§RemoveLoggingEnabled: unsafe extern "system" fn(_: *mut c_void, _: i64) -> HRESULTImplementations§
§impl ILoggingChannel_Vtbl
impl ILoggingChannel_Vtbl
pub const fn new<Identity: ILoggingChannel_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for ILoggingChannel_Vtbl
impl RefUnwindSafe for ILoggingChannel_Vtbl
impl Send for ILoggingChannel_Vtbl
impl Sync for ILoggingChannel_Vtbl
impl Unpin for ILoggingChannel_Vtbl
impl UnwindSafe for ILoggingChannel_Vtbl
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