pub struct Property {
pub odata_name: String,
pub edm_type: String,
pub nullable: bool,
pub max_length: Option<u16>,
pub precision: Option<u16>,
pub scale: Option<u16>,
pub concurrency_mode: Option<String>,
pub fc_keep_in_content: bool,
pub fc_target_path: Option<String>,
pub sap_annotations: SAPAnnotationsProperty,
pub deserializer_fn: String,
}
Expand description
Represents an edm:Property
element
Fields§
§odata_name: String
§edm_type: String
§nullable: bool
§max_length: Option<u16>
§precision: Option<u16>
§scale: Option<u16>
§concurrency_mode: Option<String>
§fc_keep_in_content: bool
§fc_target_path: Option<String>
§sap_annotations: SAPAnnotationsProperty
§deserializer_fn: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Property
impl<'de> Deserialize<'de> for Property
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Property
impl Ord for Property
Source§impl PartialOrd for Property
impl PartialOrd for Property
impl Eq for Property
impl StructuralPartialEq for Property
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more