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)
| 444 | /// |
| 445 | /// A formatted string representation of the hash. |
| 446 | pub fn format_hash_with_length(hash: &Hash, length: usize) -> String { |
| 447 | let base32 = hash.to_base32(); |
| 448 | if length == 0 || base32.len() <= length { |
| 449 | base32 |
| 450 | } else { |
| 451 | base32[..length].to_string() |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | /// Format a timestamp for display. |
| 456 | /// |