This repository was archived by the owner on Nov 18, 2022. It is now read-only.
This repository was archived by the owner on Nov 18, 2022. It is now read-only.
RLS categorizes enums as arrays #140
Closed
Description
I am not sure if it is an issue of the extension or the RLS itself, however @:
command (Go to Symbol in File by Category) places enums in the array
category.
#[derive(Clone, Debug)]
enum ChainState {
// both front and back iterator are remaining
Both,
// only front is remaining
Front,
// only back is remaining
Back,
}