sz_rust_sdk/
types.rs

1//! Common types and type aliases for the Senzing SDK
2
3/// Entity ID type
4pub type EntityId = i64;
5
6/// Configuration ID type
7pub type ConfigId = i64;
8
9/// Feature ID type
10pub type FeatureId = i64;
11
12/// Export handle type
13pub type ExportHandle = i64;
14
15/// Data source code type
16pub type DataSourceCode = String;
17
18/// Record ID type
19pub type RecordId = String;
20
21/// JSON string type for Senzing data exchange
22pub type JsonString = String;