//! Defines the trait that must be implemented by ISPC instrumentation callbacks structs
//! and provides a default one.
use CStr;
/// Trait to be implemented to provide ISPC instrumentation functionality.
///
/// The [runtime required function](http://ispc.github.io/perfguide.html#instrumenting-ispc-programs-to-understand-runtime-behavior)
/// is wrapped and forwarded to your struct.
/// A simple ISPC instrumenter which will print the information passed to it out.
;