pub trait Place<'t, T> {
// Required method
fn place(loaned: LoanedMut<'t, T>, place: &'t mut Self);
}
Expand description
Types that can be written into with Loaned::place
and LoanedMut::place
.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.