legion_prof_viewer 0.5.0

Profiler UI frontend component for Legion Prof
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod schema;

#[cfg(feature = "client")]
pub mod client;

#[cfg(feature = "server")]
pub mod server;

#[cfg(feature = "client")]
pub mod fetch;
#[cfg(all(feature = "client", not(target_arch = "wasm32")))]
pub mod fetch_native;
#[cfg(all(feature = "client", target_arch = "wasm32"))]
pub mod fetch_web;
#[cfg(feature = "client")]
pub mod url;