Trait rental::FixedDeref [] [src]

pub unsafe trait FixedDeref: Deref { }

This trait indicates both that the type can be dereferenced, and that when it is, the target has a fixed memory address while it is held by a rental struct.

This trait is already implemented for common standard types that fulfill these requirements. It must be implemented for a type to be eligible as an owner in a rental struct.

Implementors