Skip to main content

litex/common/
name_types.rs

1//! String aliases used as map keys / logical names (environment, facts, etc.).
2
3pub type ObjString = String;
4pub type FactString = String;
5pub type OrFactKey = String;
6pub type ExistFactKey = String;
7pub type AtomicFactKey = String;
8pub type PropName = String;
9pub type AbstractPropName = String;
10pub type StructName = String;
11pub type FamilyName = String;
12pub type AlgoName = String;
13pub type IdentifierName = String;
14pub type FieldAccessName = String;