Trait vulkano::SafeDeref

source ·
pub unsafe trait SafeDeref: Deref { }
Expand description

Alternative to the Deref trait. Contrary to Deref, must always return the same object.

Implementations on Foreign Types§

source§

impl<'a, T: ?Sized> SafeDeref for &'a T

source§

impl<T: ?Sized> SafeDeref for Box<T>

source§

impl<T: ?Sized> SafeDeref for Arc<T>

Implementors§