Skip to main content

PlaceWrapper

Trait PlaceWrapper 

Source
pub trait PlaceWrapper {
    type Inner: ?Sized;
}
Expand description

Wrap a place, exposing some of its subplaces.

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<T: ?Sized> PlaceWrapper for Cell<T>

Source§

type Inner = T

Source§

impl<T: ?Sized> PlaceWrapper for SyncUnsafeCell<T>

Source§

type Inner = T

Source§

impl<T: ?Sized> PlaceWrapper for UnsafeCell<T>

Source§

type Inner = T

Source§

impl<T> PlaceWrapper for MaybeUninit<T>

Source§

type Inner = T

Implementors§