The status of a RefCell.
enum RefCellStatus {
Borrowed(usize),
BorrowedMut,
Free,
}| Name | Description |
|---|---|
| Borrowed | The cell is immutably borrowed. |
| BorrowedMut | The cell is mutably borrowed. |
| Free | The cell is not borrowed. |
| Name | Description |
|---|---|
| Clone | Objects that can be duplicated. |
| Copy | Objects that can safely be copied via |
| Eq | Objects that implement the binary |
| MaybeClone | Objects that can be duplicated. |