Skip to content

Commit 5ad5c23

Browse files
committed
docs: elaborate on differences to other crates
Signed-off-by: Martin Kröning <[email protected]>
1 parent c196723 commit 5ad5c23

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@
66

77
This crate provides the [`Be`] (big-endian) and [`Le`] (little-endian) byte-order-aware numeric types.
88

9+
Unlike the popular [`byteorder`] crate, which focuses on the action of encoding and decoding numbers to and from byte streams, this crate focuses on the state of numbers.
10+
This is useful to create structs that contain fields of a specific endianness for interoperability, such as in virtio.
11+
In comparison to other crates that focus on state, this crate closely follows naming conventions from [`core::num`], has rich functionality, and extensive documentation of each method.
12+
913
[`Be`]: https://docs.rs/endian-num/latest/endian_num/struct.Be.html
1014
[`Le`]: https://docs.rs/endian-num/latest/endian_num/struct.Le.html
15+
[`byteorder`]: https://docs.rs/byteorder
16+
[`core::num`]: https://doc.rust-lang.org/stable/core/num/index.html
1117

1218
The core API looks _roughly_ like this (correspondingly for `Be`):
1319

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
//!
33
//! This crate provides the [`Be`] (big-endian) and [`Le`] (little-endian) byte-order-aware numeric types.
44
//!
5-
//! The types aim to provide a similar API to other numeric types from [`core::num`], such as [`NonZero`], [`Saturating`], and [`Wrapping`].
5+
//! Unlike the popular [`byteorder`] crate, which focuses on the action of encoding and decoding numbers to and from byte streams, this crate focuses on the state of numbers.
6+
//! This is useful to create structs that contain fields of a specific endianness for interoperability, such as in virtio.
7+
//! In comparison to other crates that focus on state, this crate closely follows naming conventions from [`core::num`], has rich functionality, and extensive documentation of each method.
68
//!
7-
//! [`NonZero`]: core::num::NonZero
8-
//! [`Saturating`]: core::num::Saturating
9-
//! [`Wrapping`]: core::num::Wrapping
9+
//! [`byteorder`]: https://docs.rs/byteorder
1010
//!
1111
//! The core API looks _roughly_ like this (correspondingly for `Be`):
1212
//!

0 commit comments

Comments
 (0)