hlctl/src/hlwm/parser/either.rs

5 lines
53 B
Rust
Raw Normal View History

pub enum Either<L, R> {
Left(L),
Right(R),
}