12 releases

Uses old Rust 2015

0.4.2 May 25, 2017
0.4.1 Apr 23, 2015
0.3.0 Apr 18, 2015
0.2.5 Apr 18, 2015
0.1.1 Nov 28, 2014

#2269 in Rust patterns

Download history 5356/week @ 2023-12-04 5553/week @ 2023-12-11 5486/week @ 2023-12-18 3440/week @ 2023-12-25 3743/week @ 2024-01-01 5173/week @ 2024-01-08 5288/week @ 2024-01-15 5607/week @ 2024-01-22 5522/week @ 2024-01-29 5824/week @ 2024-02-05 6426/week @ 2024-02-12 5965/week @ 2024-02-19 6060/week @ 2024-02-26 6943/week @ 2024-03-04 5138/week @ 2024-03-11 6546/week @ 2024-03-18

25,013 downloads per month
Used in 280 crates (10 directly)

MIT license

7KB
87 lines

Unsafe-Any Build Status

Convenience traits for unsafe downcasting from trait objects to concrete types.

Overview

This crate defines two new traits UncheckedAnyDowncast and UncheckedAnyMutDowncast, which define methods for downcasting to any type that implements Any from implemented trait objects.

It also defines two convenience implementations of these traits for &'a Any and &'a mut Any, which are the most common trait objects that you might downcast from.

Example:

let a = box 7u as Box<Any>;
unsafe { assert_eq!(*a.downcast_ref_unchecked::<uint>(), 7u); }

License

MIT


lib.rs:

Traits for unsafe downcasting from trait objects to & or &mut references of concrete types. These should only be used if you are absolutely certain of the type of the data in said trait object - there be dragons etc.

Originally inspired by https://github.com/chris-morgan/anymap and the implementation of std::any::Any.

Dependencies

~7KB