[][src]Struct bo_cell::BoCell

pub struct BoCell<'a, T> { /* fields omitted */ }

A RefCell like structure which may be coerced from a &mut

Methods

impl<'a, T> BoCell<'a, T>[src]

pub fn new(contents: &'a mut T) -> Self[src]

pub fn borrow_mut(&self) -> RefMut<T>[src]

Attempts to uniquely borrow the pointer mutably as a RefMut.

Panics if another RefMut has already been taken. For a panic free version use try_borrow_mut instead.

pub fn try_borrow_mut(&self) -> Result<RefMut<T>, BorrowError>[src]

Attempts to uniquely borrow the pointer mutably. Returns an error variant if the pointer is borrowed elsewhere.

Auto Trait Implementations

impl<'a, T> Unpin for BoCell<'a, T>

impl<'a, T> !Sync for BoCell<'a, T>

impl<'a, T> !Send for BoCell<'a, T>

impl<'a, T> !UnwindSafe for BoCell<'a, T>

impl<'a, T> !RefUnwindSafe for BoCell<'a, T>

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]