Struct windows::Foundation::Diagnostics::LoggingChannel
pub struct LoggingChannel(/* private fields */);
Implementations§
§impl LoggingChannel
impl LoggingChannel
pub fn Close(&self) -> Result<()>
pub fn Name(&self) -> Result<HSTRING>
pub fn Enabled(&self) -> Result<bool>
pub fn Level(&self) -> Result<LoggingLevel>
pub fn LogMessage(&self, eventstring: &HSTRING) -> Result<()>
pub fn LogMessageWithLevel( &self, eventstring: &HSTRING, level: LoggingLevel, ) -> Result<()>
pub fn LogValuePair(&self, value1: &HSTRING, value2: i32) -> Result<()>
pub fn LogValuePairWithLevel( &self, value1: &HSTRING, value2: i32, level: LoggingLevel, ) -> Result<()>
pub fn LoggingEnabled<P0>(&self, handler: P0) -> Result<EventRegistrationToken>where
P0: Param<TypedEventHandler<ILoggingChannel, IInspectable>>,
pub fn RemoveLoggingEnabled(&self, token: EventRegistrationToken) -> Result<()>
pub fn Id(&self) -> Result<GUID>
pub fn Create(name: &HSTRING) -> Result<LoggingChannel>
pub fn CreateWithOptions<P0>(
name: &HSTRING,
options: P0,
) -> Result<LoggingChannel>where
P0: Param<LoggingChannelOptions>,
pub fn CreateWithOptionsAndId<P0>(
name: &HSTRING,
options: P0,
id: GUID,
) -> Result<LoggingChannel>where
P0: Param<LoggingChannelOptions>,
pub fn IsEnabled(&self) -> Result<bool>
pub fn IsEnabledWithLevel(&self, level: LoggingLevel) -> Result<bool>
pub fn IsEnabledWithLevelAndKeywords( &self, level: LoggingLevel, keywords: i64, ) -> Result<bool>
pub fn LogEvent(&self, eventname: &HSTRING) -> Result<()>
pub fn LogEventWithFields<P0>(
&self,
eventname: &HSTRING,
fields: P0,
) -> Result<()>where
P0: Param<LoggingFields>,
pub fn LogEventWithFieldsAndLevel<P0>(
&self,
eventname: &HSTRING,
fields: P0,
level: LoggingLevel,
) -> Result<()>where
P0: Param<LoggingFields>,
pub fn LogEventWithFieldsAndOptions<P0, P1>(
&self,
eventname: &HSTRING,
fields: P0,
level: LoggingLevel,
options: P1,
) -> Result<()>where
P0: Param<LoggingFields>,
P1: Param<LoggingOptions>,
pub fn StartActivity(&self, starteventname: &HSTRING) -> Result<LoggingActivity>
pub fn StartActivityWithFields<P0>(
&self,
starteventname: &HSTRING,
fields: P0,
) -> Result<LoggingActivity>where
P0: Param<LoggingFields>,
pub fn StartActivityWithFieldsAndLevel<P0>(
&self,
starteventname: &HSTRING,
fields: P0,
level: LoggingLevel,
) -> Result<LoggingActivity>where
P0: Param<LoggingFields>,
pub fn StartActivityWithFieldsAndOptions<P0, P1>(
&self,
starteventname: &HSTRING,
fields: P0,
level: LoggingLevel,
options: P1,
) -> Result<LoggingActivity>where
P0: Param<LoggingFields>,
P1: Param<LoggingOptions>,
Trait Implementations§
§impl CanInto<IInspectable> for LoggingChannel
impl CanInto<IInspectable> for LoggingChannel
§impl CanInto<ILoggingChannel> for LoggingChannel
impl CanInto<ILoggingChannel> for LoggingChannel
§impl CanInto<ILoggingTarget> for LoggingChannel
impl CanInto<ILoggingTarget> for LoggingChannel
§impl CanInto<IUnknown> for LoggingChannel
impl CanInto<IUnknown> for LoggingChannel
§impl Clone for LoggingChannel
impl Clone for LoggingChannel
§fn clone(&self) -> LoggingChannel
fn clone(&self) -> LoggingChannel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for LoggingChannel
impl Debug for LoggingChannel
§impl From<&LoggingChannel> for &IInspectable
impl From<&LoggingChannel> for &IInspectable
§fn from(value: &LoggingChannel) -> Self
fn from(value: &LoggingChannel) -> Self
Converts to this type from the input type.
§impl From<&LoggingChannel> for &IUnknown
impl From<&LoggingChannel> for &IUnknown
§fn from(value: &LoggingChannel) -> Self
fn from(value: &LoggingChannel) -> Self
Converts to this type from the input type.
§impl From<LoggingChannel> for IInspectable
impl From<LoggingChannel> for IInspectable
§fn from(value: LoggingChannel) -> Self
fn from(value: LoggingChannel) -> Self
Converts to this type from the input type.
§impl From<LoggingChannel> for IUnknown
impl From<LoggingChannel> for IUnknown
§fn from(value: LoggingChannel) -> Self
fn from(value: LoggingChannel) -> Self
Converts to this type from the input type.
§impl Interface for LoggingChannel
impl Interface for LoggingChannel
§const IID: GUID = <ILoggingChannel as windows_core::Interface>::IID
const IID: GUID = <ILoggingChannel as windows_core::Interface>::IID
The
GUID
associated with the interface.§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for LoggingChannel
impl PartialEq for LoggingChannel
§fn eq(&self, other: &LoggingChannel) -> bool
fn eq(&self, other: &LoggingChannel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for LoggingChannel
impl Send for LoggingChannel
impl StructuralPartialEq for LoggingChannel
impl Sync for LoggingChannel
Auto Trait Implementations§
impl Freeze for LoggingChannel
impl RefUnwindSafe for LoggingChannel
impl Unpin for LoggingChannel
impl UnwindSafe for LoggingChannel
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)