1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! Functionality to utilise OData entity model code generated by the `odata_client_codegen` crate.
//!
//! Re-exports from third-party crates are presented here so that users of generated code need not
//! add those crates to their own `Cargo.toml`.
pub use chrono;
pub use iso8601;
pub use serde;
pub use serde_with;
pub use uuid;
pub use odata_client;
pub use deserialize_with;
pub use ;
use Deserialize;
/// Represents an `$expand` query for types implementing [`EntityProperties`].
/// Implemented by types which represent an Entity Type included in generated code from an OData
/// Entity Data Model document.