pub type Options<const SUPPORTS_MOVE: bool = true, const LIST_FANOUT: usize = 12, const CHUNK_SIZE: usize = 32> = TypedOptions<Bool<SUPPORTS_MOVE>, Usize<LIST_FANOUT>, Usize<CHUNK_SIZE>>;Expand description
Options for Eips.
This type implements EipsOptions. Const parameters correspond to
associated types in EipsOptions as follows; see those associated types
for documentation:
| Const parameter | Associated type |
|---|---|
SUPPORTS_MOVE | EipsOptions::SupportsMove |
LIST_FANOUT | EipsOptions::ListFanout |
CHUNK_SIZE | EipsOptions::ChunkSize |
Aliased Typeยง
pub struct Options<const SUPPORTS_MOVE: bool = true, const LIST_FANOUT: usize = 12, const CHUNK_SIZE: usize = 32>(/* private fields */);