parse_sap_odata/sap_semantics/mod.rs
1pub mod entity_set;
2pub mod entity_type;
3pub mod property;
4
5// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
6pub trait SemanticType {
7 fn member_name(&self) -> Vec<u8>;
8}
9
10pub trait OptionalSemanticType {
11 fn opt_sem_type<T: SemanticType>(&self, opt_self: &Option<T>) -> Vec<u8>;
12}