ipmi-rs-core 0.5.0

A pure rust implementation of the core primitives of the IPMI spec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! ipmi-rs-core: a pure-rust, sans-IO IPMI library.
//!
//! This library provides data structures for the requests and responses
//! defined in the IPMI spec, and primitives for interacting with an IPMI connection.

pub mod app;

pub mod connection;

pub mod storage;

pub mod sensor_event;

#[cfg(test)]
mod tests;