Skip to main content

OidOrCloid

Type Alias OidOrCloid 

Source
pub type OidOrCloid = Either<u64, Cloid>;
Expand description

Either an order ID (u64) or a client order ID (Cloid)

Aliased Type§

pub enum OidOrCloid {
    Left(u64),
    Right(FixedBytes<16>),
}

Variants§

§

Left(u64)

A value of type L.

§

Right(FixedBytes<16>)

A value of type R.