Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions utils/zerotrie/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
//!
//! There are multiple variants of [`ZeroTrie`] optimized for different use cases.
//!
//! # Safe Rust
//!
//! All runtime lookup code in this crate is 100% safe Rust.
//!
//! A small amount of unsafe Rust is used in the builder code as well as for implementing
//! unsafe traits such as [`VarULE`](zerovec::ule::VarULE).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: something like "unsafe traits for zero-copy frameworks"

//!
//! # Examples
//!
//! ```
Expand Down
Loading