pub unsafe trait WrapPlace<S>: PlaceWrapper{
type Wrapped: Subplace<Source = Self>;
// Required method
fn wrap(subplace: S) -> Self::Wrapped;
}Expand description
place.field – Expose a modified subplace of the wrapped place.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".