pub unsafe trait Reference<'original, 'unbounded> {
    type Unbounded;
    unsafe fn unbounded(self) -> Self::Unbounded;
}
Expand description

Used by reference to abstract over &T and &mut T

Safety

This section intentionally left blank.

Associated Types

Required methods

Safety

This section intentionally left blank.

Implementations on Foreign Types

Implementors