pub struct Provider { /* private fields */ }
Expand description

Describes an ETW Provider to use, along with its options

Implementations§

source§

impl Provider

source

pub fn by_guid<G: Into<GUID>>(guid: G) -> ProviderBuilder

Create a Provider defined by its GUID

Many types implement Into<GUID> and are acceptable as argument: GUID themselves, but also &str, etc.

source

pub fn kernel(kernel_provider: &KernelProvider) -> ProviderBuilder

Create a Kernel Provider

You can pass either a KernelProvider you have created yourself, or one of the standard providers from crate::provider::kernel_providers.

source

pub fn by_name(name: &str) -> Result<ProviderBuilder, PlaError>

Create a Provider defined by its name.

This function will look for the Provider GUID by means of the ITraceDataProviderCollection interface.

Remark

This function is considerably slow, prefer using the by_guid function when possible

Example
let my_provider = Provider::by_name("Microsoft-Windows-WinINet").unwrap().build();
source§

impl Provider

source

pub fn guid(&self) -> GUID

source

pub fn any(&self) -> u64

source

pub fn all(&self) -> u64

source

pub fn level(&self) -> u8

source

pub fn trace_flags(&self) -> TraceFlags

source

pub fn kernel_flags(&self) -> u32

source

pub fn filters(&self) -> &[EventFilter]

Trait Implementations§

source§

impl Debug for Provider

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V