Enum lrs::share::RefCellStatus

The status of a RefCell.

Syntax

enum RefCellStatus {
    Borrowed(usize),
    BorrowedMut,
    Free,
}

Variants

NameDescription
Borrowed

The cell is immutably borrowed.

BorrowedMut

The cell is mutably borrowed.

Free

The cell is not borrowed.

Trait implementations

NameDescription
Clone

Objects that can be duplicated.

Copy

Objects that can safely be copied via memcpy.

Eq

Objects that implement the binary == and != operators.

MaybeClone

Objects that can be duplicated.