Struct lrs::share::RefCellBorrowMut

A mutable RefCell borrow.

Syntax

struct RefCellBorrowMut<'a, T>
    where T: 'a,
{
    /* private fields */
}

Trait implementations

NameDescription
Deref

Objects that implement the immutable dereference operator.

DerefMut

Objects that implement the mutable dereference operator.

Drop

Objects with a destructor.

Sync

Objects that allow immutable access from threads other than their owning thread.