ax-plat 0.9.2

This crate provides a unified abstraction layer for diverse hardware platforms.
Documentation
1
2
3
4
5
6
7
8
//! Platform identity information.

/// Platform identity interface.
#[def_plat_interface]
pub trait PlatformInfoIf {
    /// Returns the platform name.
    fn platform_name() -> &'static str;
}