parse_sap_atom_feed/deserializers/
mod.rs

1pub mod edm_datetime;
2pub mod edm_decimal;
3pub mod edm_string;
4
5static ONE: &str = "1";
6
7// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
8pub fn default_sap_content_version() -> String {
9    ONE.to_string()
10}
11pub fn default_true() -> bool {
12    true
13}
14pub fn default_false() -> bool {
15    false
16}