Skip to content
This repository was archived by the owner on Jan 4, 2026. It is now read-only.

Commit 1ce04f5

Browse files
committed
Add a lot of docs
1 parent 8c46a25 commit 1ce04f5

13 files changed

Lines changed: 439 additions & 208 deletions

File tree

src/lib.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,28 @@
55
#![cfg_attr(not(any(test, feature = "std")), no_std)]
66

77
/// Type aliases for different generic configurations
8+
///
89
pub mod nicknames;
910

1011
/// Producer and consumer interfaces
12+
///
1113
pub mod prod_cons;
1214

1315
/// Queue storage
16+
///
1417
pub mod queue;
1518

1619
/// Generic traits
20+
///
1721
pub mod traits;
1822

23+
/// Re-export of external types/traits
24+
///
1925
pub mod export {
2026
pub use const_init::ConstInit;
2127
}
2228

23-
#[cfg(test)]
29+
#[cfg(all(test, feature = "std"))]
2430
mod test {
2531
use core::{ops::Deref, time::Duration};
2632

0 commit comments

Comments
 (0)