Trait reborrow::ReborrowMut

source ·
pub trait ReborrowMut<'short, _Outlives = &'short Self> {
    type Target;

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

Mutable reborrowing.

Required Associated Types§

Required Methods§

source

fn rb_mut(&'short mut self) -> Self::Target

Implementations on Foreign Types§

source§

impl<'short, 'a, T> ReborrowMut<'short> for &'a Twhere T: ?Sized,

§

type Target = &'short T

source§

fn rb_mut(&'short mut self) -> Self::Target

source§

impl<'short, 'a, T> ReborrowMut<'short> for &'a mut Twhere T: ?Sized,

§

type Target = &'short mut T

source§

fn rb_mut(&'short mut self) -> Self::Target

source§

impl<'short, T> ReborrowMut<'short> for Option<T>where T: ReborrowMut<'short>,

§

type Target = Option<<T as ReborrowMut<'short>>::Target>

source§

fn rb_mut(&'short mut self) -> Self::Target

Implementors§