1
Fork 0

Delete send_str, rewrite clients on top of MaybeOwned<'static>

Declare a `type SendStr = MaybeOwned<'static>` to ease readibility of
types that needed the old SendStr behavior.

Implement all the traits for MaybeOwned that SendStr used to implement.
This commit is contained in:
Kevin Ballard 2014-02-07 16:36:59 -08:00
parent 122c94d2f3
commit 086c0dd33f
14 changed files with 310 additions and 391 deletions

View file

@ -117,7 +117,6 @@ pub mod vec_ng;
pub mod str;
pub mod ascii;
pub mod send_str;
pub mod ptr;
pub mod owned;