Struct rental::common::RentRefCell_Borrow[][src]

pub struct RentRefCell_Borrow<'head: 'suffix, 'suffix, H: 'static + StableDeref, T: 'static> {
    pub head: &'head <H as Deref>::Target,
    pub suffix: &'suffix Ref<'head, T>,
}

Shared borrow of a rental struct.

Fields

head: &'head <H as Deref>::Targetsuffix: &'suffix Ref<'head, T>

Trait Implementations

impl<'head: 'suffix, 'suffix, H: 'static + StableDeref, T: 'static> IntoSuffix for RentRefCell_Borrow<'head, 'suffix, H, T>[src]

type Suffix = &'suffix Ref<'head, T>

Type of the transitive suffix of the borrow struct. Read more

Auto Trait Implementations

impl<'head, 'suffix, H, T> !RefUnwindSafe for RentRefCell_Borrow<'head, 'suffix, H, T>

impl<'head, 'suffix, H, T> !Send for RentRefCell_Borrow<'head, 'suffix, H, T>

impl<'head, 'suffix, H, T> !Sync for RentRefCell_Borrow<'head, 'suffix, H, T>

impl<'head, 'suffix, H, T> Unpin for RentRefCell_Borrow<'head, 'suffix, H, T> where
    'head: 'suffix, 

impl<'head, 'suffix, H, T> !UnwindSafe for RentRefCell_Borrow<'head, 'suffix, H, T>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.