pub struct Schema {
pub xml_namespace: String,
pub namespace: String,
pub xml_lang: String,
pub sap_annotations: SAPAnnotationsSchema,
pub entity_types: Vec<EntityType>,
pub complex_types: Option<Vec<ComplexType>>,
pub associations: Vec<Association>,
pub entity_container: Option<EntityContainer>,
pub annotation_list: Option<Vec<Annotations>>,
pub atom_links: Vec<AtomLink>,
}
Expand description
Represents a <Schema>
tag
§Child Nodes
1:n EntityType
0:n Association
0:n ComplexType
1:1 EntityContainer
Fields§
§xml_namespace: String
§namespace: String
§xml_lang: String
§sap_annotations: SAPAnnotationsSchema
§entity_types: Vec<EntityType>
§complex_types: Option<Vec<ComplexType>>
§associations: Vec<Association>
§entity_container: Option<EntityContainer>
§annotation_list: Option<Vec<Annotations>>
§atom_links: Vec<AtomLink>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Schema
impl<'de> Deserialize<'de> for Schema
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
Auto Trait Implementations§
impl Freeze for Schema
impl RefUnwindSafe for Schema
impl Send for Schema
impl Sync for Schema
impl Unpin for Schema
impl UnwindSafe for Schema
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