[][src]Struct scoped_cell::ScopedCell

pub struct ScopedCell<T: ?Sized> { /* fields omitted */ }

Implementations

impl<T: ?Sized> ScopedCell<T>[src]

pub fn borrow_mut<F, R>(&self, fun: F) -> R where
    F: FnOnce(&mut T) -> R, 
[src]

pub fn try_borrow_mut<F, R>(&self, fun: F) -> Result<R, BorrowMutError> where
    F: FnOnce(&mut T) -> R, 
[src]

Trait Implementations

impl<T: ?Sized> Clone for ScopedCell<T>[src]

impl<T: ?Sized> Drop for ScopedCell<T>[src]

Auto Trait Implementations

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

impl<T> !Send for ScopedCell<T>[src]

impl<T> !Sync for ScopedCell<T>[src]

impl<T: ?Sized> Unpin for ScopedCell<T>[src]

impl<T: ?Sized> UnwindSafe for ScopedCell<T> where
    T: RefUnwindSafe
[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.