pub struct SchemaGraph {
pub collections: Vec<CollectionNode>,
pub relations: Vec<RelationEdge>,
}Fields§
§collections: Vec<CollectionNode>§relations: Vec<RelationEdge>Trait Implementations§
Source§impl Clone for SchemaGraph
impl Clone for SchemaGraph
Source§fn clone(&self) -> SchemaGraph
fn clone(&self) -> SchemaGraph
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 SchemaGraph
impl Debug for SchemaGraph
Source§impl Default for SchemaGraph
impl Default for SchemaGraph
Source§fn default() -> SchemaGraph
fn default() -> SchemaGraph
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SchemaGraph
impl RefUnwindSafe for SchemaGraph
impl Send for SchemaGraph
impl Sync for SchemaGraph
impl Unpin for SchemaGraph
impl UnsafeUnpin for SchemaGraph
impl UnwindSafe for SchemaGraph
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