mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Rollup merge of #96609 - ibraheemdev:arc-downcast-unchecked, r=m-ou-se
Add `{Arc, Rc}::downcast_unchecked` Part of #90850.
This commit is contained in:
commit
7372bf88ee
@ -1254,8 +1254,6 @@ impl<T: Clone> Rc<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Rc<dyn Any> {
|
impl Rc<dyn Any> {
|
||||||
#[inline]
|
|
||||||
#[stable(feature = "rc_downcast", since = "1.29.0")]
|
|
||||||
/// Attempt to downcast the `Rc<dyn Any>` to a concrete type.
|
/// Attempt to downcast the `Rc<dyn Any>` to a concrete type.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
@ -1274,6 +1272,8 @@ impl Rc<dyn Any> {
|
|||||||
/// print_if_string(Rc::new(my_string));
|
/// print_if_string(Rc::new(my_string));
|
||||||
/// print_if_string(Rc::new(0i8));
|
/// print_if_string(Rc::new(0i8));
|
||||||
/// ```
|
/// ```
|
||||||
|
#[inline]
|
||||||
|
#[stable(feature = "rc_downcast", since = "1.29.0")]
|
||||||
pub fn downcast<T: Any>(self) -> Result<Rc<T>, Rc<dyn Any>> {
|
pub fn downcast<T: Any>(self) -> Result<Rc<T>, Rc<dyn Any>> {
|
||||||
if (*self).is::<T>() {
|
if (*self).is::<T>() {
|
||||||
unsafe {
|
unsafe {
|
||||||
@ -1285,6 +1285,42 @@ impl Rc<dyn Any> {
|
|||||||
Err(self)
|
Err(self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Downcasts the `Rc<dyn Any>` to a concrete type.
|
||||||
|
///
|
||||||
|
/// For a safe alternative see [`downcast`].
|
||||||
|
///
|
||||||
|
/// # Examples
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// #![feature(downcast_unchecked)]
|
||||||
|
///
|
||||||
|
/// use std::any::Any;
|
||||||
|
/// use std::rc::Rc;
|
||||||
|
///
|
||||||
|
/// let x: Rc<dyn Any> = Rc::new(1_usize);
|
||||||
|
///
|
||||||
|
/// unsafe {
|
||||||
|
/// assert_eq!(*x.downcast_unchecked::<usize>(), 1);
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// The contained value must be of type `T`. Calling this method
|
||||||
|
/// with the incorrect type is *undefined behavior*.
|
||||||
|
///
|
||||||
|
///
|
||||||
|
/// [`downcast`]: Self::downcast
|
||||||
|
#[inline]
|
||||||
|
#[unstable(feature = "downcast_unchecked", issue = "90850")]
|
||||||
|
pub unsafe fn downcast_unchecked<T: Any>(self) -> Rc<T> {
|
||||||
|
unsafe {
|
||||||
|
let ptr = self.ptr.cast::<RcBox<T>>();
|
||||||
|
mem::forget(self);
|
||||||
|
Rc::from_inner(ptr)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: ?Sized> Rc<T> {
|
impl<T: ?Sized> Rc<T> {
|
||||||
|
@ -1705,8 +1705,6 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Arc<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Arc<dyn Any + Send + Sync> {
|
impl Arc<dyn Any + Send + Sync> {
|
||||||
#[inline]
|
|
||||||
#[stable(feature = "rc_downcast", since = "1.29.0")]
|
|
||||||
/// Attempt to downcast the `Arc<dyn Any + Send + Sync>` to a concrete type.
|
/// Attempt to downcast the `Arc<dyn Any + Send + Sync>` to a concrete type.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
@ -1725,9 +1723,11 @@ impl Arc<dyn Any + Send + Sync> {
|
|||||||
/// print_if_string(Arc::new(my_string));
|
/// print_if_string(Arc::new(my_string));
|
||||||
/// print_if_string(Arc::new(0i8));
|
/// print_if_string(Arc::new(0i8));
|
||||||
/// ```
|
/// ```
|
||||||
|
#[inline]
|
||||||
|
#[stable(feature = "rc_downcast", since = "1.29.0")]
|
||||||
pub fn downcast<T>(self) -> Result<Arc<T>, Self>
|
pub fn downcast<T>(self) -> Result<Arc<T>, Self>
|
||||||
where
|
where
|
||||||
T: Any + Send + Sync + 'static,
|
T: Any + Send + Sync,
|
||||||
{
|
{
|
||||||
if (*self).is::<T>() {
|
if (*self).is::<T>() {
|
||||||
unsafe {
|
unsafe {
|
||||||
@ -1739,6 +1739,45 @@ impl Arc<dyn Any + Send + Sync> {
|
|||||||
Err(self)
|
Err(self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Downcasts the `Arc<dyn Any + Send + Sync>` to a concrete type.
|
||||||
|
///
|
||||||
|
/// For a safe alternative see [`downcast`].
|
||||||
|
///
|
||||||
|
/// # Examples
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// #![feature(downcast_unchecked)]
|
||||||
|
///
|
||||||
|
/// use std::any::Any;
|
||||||
|
/// use std::sync::Arc;
|
||||||
|
///
|
||||||
|
/// let x: Arc<dyn Any + Send + Sync> = Arc::new(1_usize);
|
||||||
|
///
|
||||||
|
/// unsafe {
|
||||||
|
/// assert_eq!(*x.downcast_unchecked::<usize>(), 1);
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// The contained value must be of type `T`. Calling this method
|
||||||
|
/// with the incorrect type is *undefined behavior*.
|
||||||
|
///
|
||||||
|
///
|
||||||
|
/// [`downcast`]: Self::downcast
|
||||||
|
#[inline]
|
||||||
|
#[unstable(feature = "downcast_unchecked", issue = "90850")]
|
||||||
|
pub unsafe fn downcast_unchecked<T>(self) -> Arc<T>
|
||||||
|
where
|
||||||
|
T: Any + Send + Sync,
|
||||||
|
{
|
||||||
|
unsafe {
|
||||||
|
let ptr = self.ptr.cast::<ArcInner<T>>();
|
||||||
|
mem::forget(self);
|
||||||
|
Arc::from_inner(ptr)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Weak<T> {
|
impl<T> Weak<T> {
|
||||||
|
Loading…
Reference in New Issue
Block a user