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

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

Mutable reborrowing.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors