pub trait ReborrowMut<'b, Outlives = &'b Self>: 'b {
    type Target;
    fn rb_mut(&'b mut self) -> Self::Target;
}
Expand description

Mutable reborrowing.

Associated Types

Required methods

Implementations on Foreign Types

Implementors