pub struct EdmProperty {
pub name: String,
pub edm_type: String,
pub nullable: bool,
}Expand description
One EDM property (column) of an entity type.
Fields§
§name: StringProperty name.
edm_type: StringEDM type (e.g. Edm.String, Edm.Int32).
nullable: boolWhether the property may be null (EDM default is true).
Trait Implementations§
Source§impl Clone for EdmProperty
impl Clone for EdmProperty
Source§fn clone(&self) -> EdmProperty
fn clone(&self) -> EdmProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EdmProperty
impl Debug for EdmProperty
Source§impl PartialEq for EdmProperty
impl PartialEq for EdmProperty
impl StructuralPartialEq for EdmProperty
Auto Trait Implementations§
impl Freeze for EdmProperty
impl RefUnwindSafe for EdmProperty
impl Send for EdmProperty
impl Sync for EdmProperty
impl Unpin for EdmProperty
impl UnsafeUnpin for EdmProperty
impl UnwindSafe for EdmProperty
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