parse_sap_odata/property/property_ref/mod.rs
1#[cfg(feature = "parser")]
2pub mod metadata;
3
4use serde::{Deserialize, Serialize};
5
6// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
7/// Represents a `<PropertyRef>` tag
8#[derive(Clone, Debug, Serialize, Deserialize, Ord, Eq, PartialOrd, PartialEq)]
9#[serde(rename_all = "PascalCase")]
10pub struct PropertyRef {
11 #[serde(rename = "@Name")]
12 pub name: String,
13}