pub struct RelationshipData {
pub id: Uuid,
pub source_table_id: Uuid,
pub target_table_id: Uuid,
}Expand description
Relationship data loaded from storage
Fields§
§id: Uuid§source_table_id: Uuid§target_table_id: UuidTrait Implementations§
Source§impl Clone for RelationshipData
impl Clone for RelationshipData
Source§fn clone(&self) -> RelationshipData
fn clone(&self) -> RelationshipData
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 moreAuto Trait Implementations§
impl Freeze for RelationshipData
impl RefUnwindSafe for RelationshipData
impl Send for RelationshipData
impl Sync for RelationshipData
impl Unpin for RelationshipData
impl UnwindSafe for RelationshipData
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