pub type OidOrCloid = Either<u64, Cloid>;
Either an order ID (u64) or a client order ID (Cloid)
pub enum OidOrCloid { Left(u64), Right(FixedBytes<16>), }
A value of type L.
L
A value of type R.
R