one_collect 0.1.34532

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(super) mod windows;

#[cfg(target_os = "windows")]
pub(super) use windows::*;

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

#[cfg(target_os = "linux")]
pub(crate) use linux::*;