Format a hash for display with custom length. Like [`format_hash`], but allows specifying the truncation length. # Arguments `hash` - The hash to format `length` - Maximum characters to show (0 means no truncation) # Returns A formatted string representation of the hash.
(hash: &Hash, length: usize)
| 414 | /// |
| 415 | /// A formatted string representation of the hash. |
| 416 | pub fn format_hash_with_length(hash: &Hash, length: usize) -> String { |
| 417 | let base32 = hash.to_base32(); |
| 418 | if length == 0 || base32.len() <= length { |
| 419 | base32 |
| 420 | } else { |
| 421 | base32[..length].to_string() |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | /// Format a timestamp for display. |
| 426 | /// |