2015-04-25 14:01:01 +10:00
|
|
|
|
//! The different types of `Any` for use in a map.
|
|
|
|
|
//!
|
|
|
|
|
//! This stuff is all based on `std::any`, but goes a little further, with `CloneAny` being a
|
|
|
|
|
//! cloneable `Any` and with the `Send` and `Sync` bounds possible on both `Any` and `CloneAny`.
|
|
|
|
|
|
|
|
|
|
use std::fmt;
|
|
|
|
|
use std::any::Any as StdAny;
|
|
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
|
pub trait CloneToAny {
|
2022-01-25 12:57:35 +11:00
|
|
|
|
/// Clone `self` into a new `Box<dyn CloneAny>` object.
|
|
|
|
|
fn clone_to_any(&self) -> Box<dyn CloneAny>;
|
2015-04-25 14:01:01 +10:00
|
|
|
|
|
2022-01-25 12:57:35 +11:00
|
|
|
|
/// Clone `self` into a new `Box<dyn CloneAny + Send>` object.
|
|
|
|
|
fn clone_to_any_send(&self) -> Box<dyn CloneAny + Send> where Self: Send;
|
2015-04-25 14:01:01 +10:00
|
|
|
|
|
2022-01-25 12:57:35 +11:00
|
|
|
|
/// Clone `self` into a new `Box<dyn CloneAny + Sync>` object.
|
|
|
|
|
fn clone_to_any_sync(&self) -> Box<dyn CloneAny + Sync> where Self: Sync;
|
2015-04-25 14:01:01 +10:00
|
|
|
|
|
2022-01-25 12:57:35 +11:00
|
|
|
|
/// Clone `self` into a new `Box<dyn CloneAny + Send + Sync>` object.
|
|
|
|
|
fn clone_to_any_send_sync(&self) -> Box<dyn CloneAny + Send + Sync> where Self: Send + Sync;
|
2015-04-25 14:01:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: Any + Clone> CloneToAny for T {
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2022-01-25 12:57:35 +11:00
|
|
|
|
fn clone_to_any(&self) -> Box<dyn CloneAny> {
|
2015-04-25 14:01:01 +10:00
|
|
|
|
Box::new(self.clone())
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2022-01-25 12:57:35 +11:00
|
|
|
|
fn clone_to_any_send(&self) -> Box<dyn CloneAny + Send> where Self: Send {
|
2015-04-25 14:01:01 +10:00
|
|
|
|
Box::new(self.clone())
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2022-01-25 12:57:35 +11:00
|
|
|
|
fn clone_to_any_sync(&self) -> Box<dyn CloneAny + Sync> where Self: Sync {
|
2015-04-25 14:01:01 +10:00
|
|
|
|
Box::new(self.clone())
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2022-01-25 12:57:35 +11:00
|
|
|
|
fn clone_to_any_send_sync(&self) -> Box<dyn CloneAny + Send + Sync> where Self: Send + Sync {
|
2015-04-25 14:01:01 +10:00
|
|
|
|
Box::new(self.clone())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
macro_rules! impl_clone {
|
|
|
|
|
($t:ty, $method:ident) => {
|
|
|
|
|
impl Clone for Box<$t> {
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2015-04-25 14:01:01 +10:00
|
|
|
|
fn clone(&self) -> Box<$t> {
|
|
|
|
|
(**self).$method()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[allow(missing_docs)] // Bogus warning (it’s not public outside the crate), ☹
|
|
|
|
|
pub trait UncheckedAnyExt: Any {
|
|
|
|
|
unsafe fn downcast_ref_unchecked<T: Any>(&self) -> &T;
|
|
|
|
|
unsafe fn downcast_mut_unchecked<T: Any>(&mut self) -> &mut T;
|
|
|
|
|
unsafe fn downcast_unchecked<T: Any>(self: Box<Self>) -> Box<T>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
|
/// A trait for the conversion of an object into a boxed trait object.
|
|
|
|
|
pub trait IntoBox<A: ?Sized + UncheckedAnyExt>: Any {
|
|
|
|
|
/// Convert self into the appropriate boxed form.
|
|
|
|
|
fn into_box(self) -> Box<A>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
macro_rules! implement {
|
|
|
|
|
($base:ident, $(+ $bounds:ident)*) => {
|
2022-01-25 12:57:35 +11:00
|
|
|
|
impl fmt::Debug for dyn $base $(+ $bounds)* {
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2015-04-25 14:01:01 +10:00
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2022-01-25 12:57:35 +11:00
|
|
|
|
f.pad(stringify!(dyn $base $(+ $bounds)*))
|
2015-04-25 14:01:01 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-25 12:57:35 +11:00
|
|
|
|
impl UncheckedAnyExt for dyn $base $(+ $bounds)* {
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2015-04-25 14:01:01 +10:00
|
|
|
|
unsafe fn downcast_ref_unchecked<T: 'static>(&self) -> &T {
|
2016-06-11 10:46:30 +10:00
|
|
|
|
&*(self as *const Self as *const T)
|
2015-04-25 14:01:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2015-04-25 14:01:01 +10:00
|
|
|
|
unsafe fn downcast_mut_unchecked<T: 'static>(&mut self) -> &mut T {
|
2016-06-11 10:46:30 +10:00
|
|
|
|
&mut *(self as *mut Self as *mut T)
|
2015-04-25 14:01:01 +10:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2015-04-25 14:01:01 +10:00
|
|
|
|
unsafe fn downcast_unchecked<T: 'static>(self: Box<Self>) -> Box<T> {
|
2016-06-11 10:46:30 +10:00
|
|
|
|
Box::from_raw(Box::into_raw(self) as *mut T)
|
2015-04-25 14:01:01 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-25 12:57:35 +11:00
|
|
|
|
impl<T: $base $(+ $bounds)*> IntoBox<dyn $base $(+ $bounds)*> for T {
|
2016-06-11 13:30:33 +10:00
|
|
|
|
#[inline]
|
2022-01-25 12:57:35 +11:00
|
|
|
|
fn into_box(self) -> Box<dyn $base $(+ $bounds)*> {
|
2015-04-25 14:01:01 +10:00
|
|
|
|
Box::new(self)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-25 13:06:15 +11:00
|
|
|
|
/// 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
|
|
|
|
|
/// <code><a class=trait title=core::marker::Send
|
|
|
|
|
/// href=http://doc.rust-lang.org/std/marker/trait.Send.html>Send</a></code> and
|
|
|
|
|
/// <code><a class=trait title=core::marker::Sync
|
|
|
|
|
/// href=http://doc.rust-lang.org/std/marker/trait.Sync.html>Sync</a></code>.
|
|
|
|
|
///
|
|
|
|
|
/// See also [`CloneAny`](trait.CloneAny.html) for a cloneable version of this trait.
|
|
|
|
|
pub trait Any: StdAny { }
|
|
|
|
|
impl<T: StdAny> Any for T { }
|
2015-04-25 14:01:01 +10:00
|
|
|
|
implement!(Any,);
|
|
|
|
|
implement!(Any, + Send);
|
|
|
|
|
implement!(Any, + Sync);
|
|
|
|
|
implement!(Any, + Send + Sync);
|
2022-01-25 13:06:15 +11:00
|
|
|
|
|
|
|
|
|
/// 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
|
|
|
|
|
/// <code><a class=trait title=core::marker::Send
|
|
|
|
|
/// href=http://doc.rust-lang.org/std/marker/trait.Send.html>Send</a></code> and
|
|
|
|
|
/// <code><a class=trait title=core::marker::Sync
|
|
|
|
|
/// href=http://doc.rust-lang.org/std/marker/trait.Sync.html>Sync</a></code>.
|
|
|
|
|
///
|
|
|
|
|
/// See also [`Any`](trait.Any.html) for a version without the `Clone` requirement.
|
|
|
|
|
pub trait CloneAny: Any + CloneToAny { }
|
|
|
|
|
impl<T: StdAny + Clone> CloneAny for T { }
|
2015-04-25 14:01:01 +10:00
|
|
|
|
implement!(CloneAny,);
|
|
|
|
|
implement!(CloneAny, + Send);
|
|
|
|
|
implement!(CloneAny, + Sync);
|
|
|
|
|
implement!(CloneAny, + Send + Sync);
|
2022-01-25 12:57:35 +11:00
|
|
|
|
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);
|
|
|
|
|
impl_clone!(dyn CloneAny + Send + Sync, clone_to_any_send_sync);
|