alumet 0.8.0

Modular framework for hardware and software measurement (including energy consumption and more).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Implementation and control of output tasks.

/// Lazy creation of outputs.
pub mod builder;
pub(crate) mod control;
/// Outputs-related errors.
pub mod error;
/// Public interface for implementing outputs.
pub mod interface;
/// Functions that run outputs.
pub mod run;

pub use error::WriteError;
pub use interface::{AsyncOutputStream, BoxedAsyncOutput, Output, OutputContext};