Trait bitflags::__core::panic::RefRecoverSafe
[−]
[src]
pub trait RefRecoverSafe { }
Unstable (
recover
): awaiting feedback
A marker trait representing types where a shared reference is considered recover safe.
This trait is namely not implemented by UnsafeCell
, the root of all
interior mutability.
This is a "helper marker trait" used to provide impl blocks for the
RecoverSafe
trait, for more information see that documentation.
Implementors
impl<T> !RefRecoverSafe for UnsafeCell<T> where T: ?Sized
impl<T> RefRecoverSafe for AssertRecoverSafe<T>