Constant hdk::hash_path::path::DELIMITER

source ·
pub const DELIMITER: &str = ".";
Expand description

Allows for “foo.bar.baz” to automatically move to/from [“foo”, “bar”, “baz”] components. Technically it’s moving each string component in as bytes. If this is a problem for you simply build the components yourself as a Vec<Vec<u8>>.

See impl From<String> for Path below.