//! A backend storage for pprof profiles.
usestd::time::SystemTime;pubmodfile;#[cfg(feature ="pyroscope")]pubmodpyroscope;/// A backend storage for pprof profiles.
pubtraitPProfBackend{/// Save a profile to the backend.
fnsave_profile(&self,
kind:&str,
start_time: SystemTime,
end_time: SystemTime,
profile_data:Vec<u8>,
);}