Crates.io | downcast |
lib.rs | downcast |
version | 0.11.0 |
source | src |
created_at | 2015-10-24 11:18:26.683306 |
updated_at | 2021-11-09 09:57:28.963027 |
description | Trait for downcasting trait objects back to their original types. |
homepage | |
repository | https://github.com/fkoep/downcast-rs |
max_upload_size | |
id | 3293 |
size | 22,418 |
A trait (& utilities) for downcasting trait objects back to their original types.
Add to your Cargo.toml:
[dependencies]
downcast = "0.12"
Add to your crate root:
#[macro_use]
extern crate downcast;
Arc
-pointers.Downcast::downcast()
).Any::type_name()
).Q: I'm getting the size for values of type XXX cannot be known at compile time
errors, what am i doing wrong?
A: Make sure you use the corresponding Any
bound along with the Downcast
traits. So, Any
for Downcast
and AnySync
for DowncastSync
.
Q: Can i cast trait objects to trait objects?
A: No, that is currently no possible in safe rust - and unsafe solutions are very tricky, as well. If you found a solution, feel free to share it!
Q: What is the difference between this and the downcast-rs
crate on crates.io?
A: At the moment, there isn't one, really. There was an unfortunate naming clash. You may consider using the other crate, as it is more actively maintained. This one is considered feature-complete and frozen in functionality. Hopefully, one day, the Rust language will make downcasting easier and we will need neither of these crates anymore!