pub trait ReborrowMut<'b, Outlives = &'b Self>: 'b {
    type Target;

    fn rb_mut(&'b mut self) -> Self::Target;
}
Expand description

Mutable reborrowing.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors