66
What are some mind blowing Rust tricks?
(programming.dev)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
What if I specify the wrong type?
let retrieved = storage.get::<SomeOtherType>();
?Is it a runtime error or a compile time error?
To answer my own question: I believe it's a runtime error: https://doc.rust-lang.org/stable/std/any/trait.Any.html#method.downcast
Well, you would determine the
TypeId
ofSomeOtherType
, then search for that as the key in your HashMap and get back aNone
, because no entry exists and then you'd hand that back to the user.I guess, my little usage example should've included handling of an
Option
value...So, it's only a runtime error, if you decide to
.unwrap()
or similar.