pub trait ReborrowMut<'a> {
    type Result;
    fn reborrow_mut(&'a mut self) -> Self::Result;
}
Expand description

Trait representing the act of “reborrowing” a mutable reference to produce a new one with a shorter lifetime.

Associated Types

Type of the shorter reference

Required methods

Produces a new reference with lifetime ’a

Implementations on Foreign Types

Implementors