ipmi-rs-core 0.6.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
16
17
//! Definitions for IPMI app commands.

mod get_device_id;
pub use get_device_id::{DeviceId, GetDeviceId};

mod get_channel_info;
pub use get_channel_info::{
    AuxChannelInfo, ChannelInfo, ChannelMediumType, ChannelProtocolType, ChannelSessionSupport,
    GetChannelInfo,
};

mod get_channel_access;
pub use get_channel_access::{
    ChannelAccess, ChannelAccessMode, ChannelAccessType, ChannelPrivilegeLevel, GetChannelAccess,
};

pub mod auth;