pub struct ExpandedSchema {
pub entities: Vec<ExpandedEntity>,
pub json_structures: Vec<ExpandedJsonStructure>,
pub relations: Vec<ExpandedRelation>,
pub classifications: Vec<ExpandedClassification>,
}Fields§
§entities: Vec<ExpandedEntity>§json_structures: Vec<ExpandedJsonStructure>§relations: Vec<ExpandedRelation>§classifications: Vec<ExpandedClassification>Trait Implementations§
Source§impl Clone for ExpandedSchema
impl Clone for ExpandedSchema
Source§fn clone(&self) -> ExpandedSchema
fn clone(&self) -> ExpandedSchema
Returns a duplicate of the value. Read more
1.0.0 · 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 ExpandedSchema
impl Debug for ExpandedSchema
Source§impl Default for ExpandedSchema
impl Default for ExpandedSchema
Source§fn default() -> ExpandedSchema
fn default() -> ExpandedSchema
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExpandedSchema
impl PartialEq for ExpandedSchema
Source§impl Serialize for ExpandedSchema
impl Serialize for ExpandedSchema
Source§impl TryFrom<ExpandedSchema> for LiftedSchema
impl TryFrom<ExpandedSchema> for LiftedSchema
Source§type Error = SchemaLiftError
type Error = SchemaLiftError
The type returned in the event of a conversion error.
Source§impl TryFrom<NormalizedSchema> for ExpandedSchema
impl TryFrom<NormalizedSchema> for ExpandedSchema
Source§type Error = SchemaExpandError
type Error = SchemaExpandError
The type returned in the event of a conversion error.
impl StructuralPartialEq for ExpandedSchema
Auto Trait Implementations§
impl Freeze for ExpandedSchema
impl RefUnwindSafe for ExpandedSchema
impl Send for ExpandedSchema
impl Sync for ExpandedSchema
impl Unpin for ExpandedSchema
impl UnsafeUnpin for ExpandedSchema
impl UnwindSafe for ExpandedSchema
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