Enum rayon::iter::Either [] [src]

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

Represents a value of one of two possible types.

Variants