osom_lib_reprc/
lib.rs

1//! This crate holds tools that help with `#[repr(C)]` representations.
2//!
3//! This crate is `#![no_std]`.
4#![cfg_attr(docsrs, feature(doc_cfg))]
5#![cfg_attr(docsrs, allow(unused_attributes))]
6#![deny(warnings)]
7#![warn(clippy::all, clippy::pedantic)]
8#![no_std]
9
10pub mod macros;
11pub mod traits;