This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "[rust]": { | |
| "editor.wordBasedSuggestions": false, | |
| }, | |
| "editor.semanticTokenColorCustomizations": { | |
| "[Default Dark+]": { | |
| "enabled": true, | |
| "rules": { | |
| "method.static:rust": { | |
| "foreground": "#f0c506" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::fmt::Display; | |
| use chrono::Utc; | |
| use sha3::Sha3_512; | |
| use uuid::Uuid; | |
| use crate::errors::HashError; | |
| struct HashedElement(Box<[u8]>); |