Trait vulkano::SafeDeref [] [src]

pub unsafe trait SafeDeref: Deref { }

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

Implementations on Foreign Types

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

impl<T: ?Sized> SafeDeref for Arc<T>
[src]

impl<T: ?Sized> SafeDeref for Box<T>
[src]

Implementors