Skip to main content

HasPlace

Trait HasPlace 

Source
pub trait HasPlace {
    type Target: ?Sized;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

impl<T: ?Sized> HasPlace for *const T

Source§

impl<T: ?Sized> HasPlace for *mut T

Source§

impl<T: ?Sized> HasPlace for NonNull<T>

Implementors§