We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db57b04 + 4e733a4 commit c173b9aCopy full SHA for c173b9a
hkd32/src/lib.rs
@@ -13,7 +13,12 @@
13
//! - `hkd32::KeyMaterial`: a 32-byte (256-bit) uniformly random value
14
//! - `hkd32::Path` or `hkd32::PathBuf`: path to the child key
15
//!
16
-//! Derivation paths can be raw bytestrings but also support
+//! Derivation paths can be raw bytestrings but also support a Unix path-like
17
+//! syntax which can be parsed using the `String::parse` method:
18
+//!
19
+//! ```rust
20
+//! let path = "/foo/bar/baz".parse::<hkd32::PathBuf>().unwrap();
21
+//! ```
22
23
//! # Example
24
0 commit comments