From: Chris Morgan Date: Tue, 25 Jan 2022 02:06:15 +0000 (+1100) Subject: Unravel the parbroken define! macro X-Git-Tag: 1.0.0-beta.1~21 X-Git-Url: https://git.chrismorgan.info/anymap/commitdiff_plain/0656f182894b8f7c5c172b6f762c922e1a8b4ed9 Unravel the parbroken define! macro Turns out its commenting technique was completely broken—the attributes have to be attached to an item *inside* the macro, not outside. And judging by https://docs.rs/anymap/0.11.0/anymap/any/trait.CloneAny.html, it was broken from the start, and I never noticed. Sigh. Now, you get a warning that it’s not going to work like you want. Good stuff. Well, that macro wasn’t a great idea anyway. Doing without it ends up a little longer, and risks inconsistent editing, but is decidedly easier to read. --- diff --git a/src/any.rs b/src/any.rs index 4045889..e9cef36 100644 --- a/src/any.rs +++ b/src/any.rs @@ -43,44 +43,6 @@ impl CloneToAny for T { } } -macro_rules! define { - (CloneAny) => { - /// A type to emulate dynamic typing. - /// - /// Every type with no non-`'static` references implements `Any`. - define!(CloneAny remainder); - }; - (Any) => { - /// A type to emulate dynamic typing with cloning. - /// - /// Every type with no non-`'static` references that implements `Clone` implements `Any`. - define!(Any remainder); - }; - ($t:ident remainder) => { - /// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for - /// more details on `Any` in general. - /// - /// This trait is not `std::any::Any` but rather a type extending that for this library’s - /// purposes so that it can be combined with marker traits like - /// Send and - /// Sync. - /// - define!($t trait); - }; - (CloneAny trait) => { - /// See also [`Any`](trait.Any.html) for a version without the `Clone` requirement. - pub trait CloneAny: Any + CloneToAny { } - impl CloneAny for T { } - }; - (Any trait) => { - /// See also [`CloneAny`](trait.CloneAny.html) for a cloneable version of this trait. - pub trait Any: StdAny { } - impl Any for T { } - }; -} - macro_rules! impl_clone { ($t:ty, $method:ident) => { impl Clone for Box<$t> { @@ -141,17 +103,47 @@ macro_rules! implement { } } -define!(Any); +/// A type to emulate dynamic typing. +/// +/// Every type with no non-`'static` references implements `Any`. +/// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for +/// more details on `Any` in general. +/// +/// This trait is not `std::any::Any` but rather a type extending that for this library’s +/// purposes so that it can be combined with marker traits like +/// Send and +/// Sync. +/// +/// See also [`CloneAny`](trait.CloneAny.html) for a cloneable version of this trait. +pub trait Any: StdAny { } +impl Any for T { } implement!(Any,); implement!(Any, + Send); implement!(Any, + Sync); implement!(Any, + Send + Sync); + +/// A type to emulate dynamic typing with cloning. +/// +/// Every type with no non-`'static` references that implements `Clone` implements `Any`. +/// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for +/// more details on `Any` in general. +/// +/// This trait is not `std::any::Any` but rather a type extending that for this library’s +/// purposes so that it can be combined with marker traits like +/// Send and +/// Sync. +/// +/// See also [`Any`](trait.Any.html) for a version without the `Clone` requirement. +pub trait CloneAny: Any + CloneToAny { } +impl CloneAny for T { } implement!(CloneAny,); implement!(CloneAny, + Send); implement!(CloneAny, + Sync); implement!(CloneAny, + Send + Sync); - -define!(CloneAny); impl_clone!(dyn CloneAny, clone_to_any); impl_clone!(dyn CloneAny + Send, clone_to_any_send); impl_clone!(dyn CloneAny + Sync, clone_to_any_sync);