pub struct ModelLoadResult {
pub tables: Vec<TableData>,
pub relationships: Vec<RelationshipData>,
pub orphaned_relationships: Vec<RelationshipData>,
}Expand description
Result of loading a model
Fields§
§tables: Vec<TableData>§relationships: Vec<RelationshipData>§orphaned_relationships: Vec<RelationshipData>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModelLoadResult
impl RefUnwindSafe for ModelLoadResult
impl Send for ModelLoadResult
impl Sync for ModelLoadResult
impl Unpin for ModelLoadResult
impl UnwindSafe for ModelLoadResult
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