[][src]Struct vptr::ThinRefMut

pub struct ThinRefMut<'a, Trait: ?Sized> { /* fields omitted */ }

A thin reference (size = size_of::<usize>()) to an object implementing the trait Trait

Same as ThinRef but for mutable references

Trait Implementations

impl<'a, Trait: ?Sized + 'a, T: HasVPtr<Trait>> From<&'a mut T> for ThinRefMut<'a, Trait>[src]

impl<'a, Trait: ?Sized + 'a> Deref for ThinRefMut<'a, Trait>[src]

type Target = Trait

The resulting type after dereferencing.

impl<'a, Trait: ?Sized + 'a> DerefMut for ThinRefMut<'a, Trait>[src]

impl<'a, Trait: ?Sized + 'a> BorrowMut<Trait> for ThinRefMut<'a, Trait>[src]

impl<'a, Trait: ?Sized + 'a> Borrow<Trait> for ThinRefMut<'a, Trait>[src]

Auto Trait Implementations

impl<'a, Trait: ?Sized> Send for ThinRefMut<'a, Trait> where
    Trait: Send

impl<'a, Trait: ?Sized> Unpin for ThinRefMut<'a, Trait>

impl<'a, Trait: ?Sized> Sync for ThinRefMut<'a, Trait> where
    Trait: Sync

impl<'a, Trait> !UnwindSafe for ThinRefMut<'a, Trait>

impl<'a, Trait: ?Sized> RefUnwindSafe for ThinRefMut<'a, Trait> where
    Trait: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]