use size_of;
/// Length of the column prefix byte in a trie key (a single `u8`).
const COLUMN_PREFIX_LEN: usize = ;
/// Length of the access key separator byte in a trie key (a single `u8`).
const ACCESS_KEY_SEPARATOR_LEN: usize = ;
/// Returns the length of the trie key for an access key.
///
/// The trie key format is: `[col_prefix] [account_id] [separator] [public_key]`
/// where the prefix and separator are each a single `u8` byte.