UpcastMutExt

Trait UpcastMutExt 

Source
pub trait UpcastMutExt<'a> {
    type Output;

    // Required method
    fn upcast_mut(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn upcast_mut(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<'a, T> UpcastMutExt<'a> for Option<&'a mut T>

Source§

type Output = Option<&'a mut void>

Source§

fn upcast_mut(self) -> Self::Output

Source§

impl<'a, T> UpcastMutExt<'a> for &'a mut T

Source§

type Output = &'a mut void

Source§

fn upcast_mut(self) -> Self::Output

Implementors§