one_collect 0.1.34811

Cross-platform library for capturing machine-level traces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

/* Windows */
#[cfg(any(doc, target_os = "windows"))]
pub mod windows;

#[cfg(target_os = "windows")]
pub type EventExtension = windows::EventExtension;

/* Linux */
#[cfg(any(doc, target_os = "linux"))]
pub mod linux;

#[cfg(target_os = "linux")]
pub type EventExtension = linux::EventExtension;