Trait std::ops::BoxPlace
[−]
[src]
pub trait BoxPlace<Data>: Place<Data> where Data: ?Sized {
fn make_place() -> Self;
}
🔬 This is a nightly-only experimental API. (
placement_new_protocol
)Specialization of Place
trait supporting box EXPR
.
Required Methods
fn make_place() -> Self
🔬 This is a nightly-only experimental API. (
placement_new_protocol
)Creates a globally fresh place.
Implementors
impl<T> BoxPlace<T> for IntermediateBox<T>