pub struct EdmEntitySet {
pub name: String,
pub type_name: String,
}Expand description
An EDM entity set: the queryable collection name + the type it holds.
Fields§
§name: StringEntity-set name (the path segment you query).
type_name: StringLocal name of the entity type backing this set.
Trait Implementations§
Source§impl Clone for EdmEntitySet
impl Clone for EdmEntitySet
Source§fn clone(&self) -> EdmEntitySet
fn clone(&self) -> EdmEntitySet
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 EdmEntitySet
impl Debug for EdmEntitySet
Source§impl PartialEq for EdmEntitySet
impl PartialEq for EdmEntitySet
impl StructuralPartialEq for EdmEntitySet
Auto Trait Implementations§
impl Freeze for EdmEntitySet
impl RefUnwindSafe for EdmEntitySet
impl Send for EdmEntitySet
impl Sync for EdmEntitySet
impl Unpin for EdmEntitySet
impl UnsafeUnpin for EdmEntitySet
impl UnwindSafe for EdmEntitySet
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