engage/generated/unity_engine/
profiling.rs1#[cfg(any(feature = "unity_engine-profiling-customsampler-types"))]
4pub mod customsampler;
5#[cfg(feature = "unity_engine-profiling-customsampler")]
6pub use customsampler::ICustomSamplerMethods;
7#[cfg(feature = "unity_engine-profiling-customsampler-types")]
8pub use customsampler::{CustomSampler, ICustomSampler};
9#[cfg(any(feature = "unity_engine-profiling-experimental-debugscreencapture-types"))]
10pub mod experimental;
11#[cfg(any(
12 feature = "unity_engine-profiling-memory-experimental-memoryprofiler-types",
13 feature = "unity_engine-profiling-memory-experimental-metadata-types"
14))]
15pub mod memory;
16#[cfg(any(feature = "unity_engine-profiling-profiler-types"))]
17pub mod profiler;
18#[cfg(feature = "unity_engine-profiling-profiler-types")]
19pub use profiler::{IProfiler, Profiler};
20#[cfg(any(feature = "unity_engine-profiling-recorder-types"))]
21pub mod recorder;
22#[cfg(feature = "unity_engine-profiling-recorder")]
23pub use recorder::IRecorderMethods;
24#[cfg(feature = "unity_engine-profiling-recorder-types")]
25pub use recorder::{IRecorder, Recorder};
26#[cfg(any(feature = "unity_engine-profiling-sampler-types"))]
27pub mod sampler;
28#[cfg(feature = "unity_engine-profiling-sampler")]
29pub use sampler::ISamplerMethods;
30#[cfg(feature = "unity_engine-profiling-sampler-types")]
31pub use sampler::{ISampler, Sampler};