-
Notifications
You must be signed in to change notification settings - Fork 22
Serialization/deserialization not working properly #33
Copy link
Copy link
Open
Description
Steps to reproduce:
- Downloads words.txt
fn main() {
let mut t = TrieBuilder::new();
for word in std::fs::read_to_string("words.txt")
.unwrap()
.split_whitespace()
{
if !word.trim().is_empty() {
t.push(word);
}
}
let t = t.build();
println!("Loaded");
let mut f = File::create_new("words.toml").unwrap();
write!(f, "{}", toml::to_string(&t).unwrap()).unwrap();
}Loaded
thread 'main' panicked at src/main.rs:57:41:
called `Result::unwrap()` on an `Err` value: Error { inner: UnsupportedType(Some("unit")) }
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Other libraries like postcard also fail, but with deserialization failing instead.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels